-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
84 lines (84 loc) · 2.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "butter-toast",
"version": "3.3.5",
"description": "Smooth toast notifications for react apps",
"keywords": [
"React notifications",
"Toast notifications",
"React toast notifications",
"Smooth notifications",
"Toast",
"Notification",
"Alert",
"React"
],
"main": "./dist/butter-toast.min.js",
"scripts": {
"build": "npm run build:webpack && npm run build:external",
"build:external": "EXTERNAL=true npm run build:webpack",
"build:webpack": "webpack --config ./webpack.config.js",
"test": "jest --config ./configuration/jest.config.js",
"test:watch": "node_modules/.bin/jest --config ./configuration/jest.config.js --watchAll",
"test:coverage": "jest --config ./configuration/jest.config.js --coverage",
"eslint": "eslint ./src/** --quiet",
"start": "npm run storybook",
"storybook": "start-storybook -p 9003 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ealush/butter-toast.git"
},
"author": "ealush",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ealush/butter-toast/issues"
},
"homepage": "https://github.com/ealush/butter-toast#readme",
"dependencies": {
"@babel/runtime": "^7.3.1"
},
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@fiverr/eslint-config-fiverr": "^2.0.1",
"@quickbaseoss/babel-plugin-styled-components-css-namespace": "^0.1.1",
"@storybook/addon-actions": "^5.2.0",
"@storybook/addons": "^5.2.0",
"@storybook/react": "^5.2.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^6.4.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-react": "^7.12.4",
"funnies": "^2.0.0",
"greenkeeper-lockfile": "^1.15.0",
"jest": "^24.0.0",
"jest-enzyme": "^7.0.1",
"lodash": "^4.17.11",
"polished": "^2.3.3",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-test-renderer": "^16.7.0",
"styled-components": "^4.1.3",
"terser": "^4.3.1",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}