-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.67 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
85
86
{
"name": "enforce-ui",
"private": false,
"version": "1.1.12",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/es6/index.js",
"sideEffects": false,
"peerDependencies": {
"react": ">= 16.6.1",
"react-dom": ">= 16.6.1",
"react-icons": "3.6.0",
"styled-components": ">= 4.x"
},
"dependencies": {
"debounce-promise": "^3.1.2",
"prop-types": "^15.7.2",
"rambda": "^4.1.0",
"react-icons": "3.6.0",
"react-textarea-autosize": "^7.1.2",
"scroll-lock": "^2.1.2",
"styled-components": "^5.0.0-rc.2",
"styled-system": "^5.1.2",
"tinycolor2": "^1.4.1",
"tinygradient": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@storybook/addon-actions": "^5.2.6",
"@storybook/addon-links": "^5.2.6",
"@storybook/addon-storysource": "^5.2.6",
"@storybook/addon-viewport": "^5.2.6",
"@storybook/addons": "^5.2.6",
"@storybook/react": "^5.2.6",
"@storybook/storybook-deployer": "^2.8.1",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"concurrently": "^5.0.0",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1",
"release-it": "^12.4.3",
"storybook-dark-mode": "^0.1.9",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"webpack": "webpack --mode production",
"build": "rm -rf dist && webpack --mode production && babel ./src/ --ignore '__tests__' --out-dir ./dist --copy-files && cross-env BABEL_ENV=es6 babel ./src/ --ignore '__tests__' --out-dir ./dist/es6 --copy-files",
"build:watch": "rm -rf dist && webpack --mode production && babel ./src/ --ignore '__tests__' --out-dir ./dist --copy-files --watch",
"release": "release-it",
"lint": "eslint src/**/*.js"
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint"
],
"after:bump": "npm run build"
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}