forked from skmail/responsive-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
{
"name": "responsive-chrome-extension",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"append-query": "^2.0.1",
"array-move": "^2.1.0",
"classnames": "^2.2.6",
"husky": "^3.1.0",
"jquery": "^3.4.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"query-string": "^6.8.2",
"react": "^16.8.6",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-scripts": "3.0.1",
"react-sortable-hoc": "^1.9.1",
"redux": "^4.0.4",
"redux-form": "^8.2.4",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.5",
"scroll-into-view": "^1.9.7",
"url-parse": "^1.4.7",
"uuid": "^3.3.3",
"validator": "^11.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "REACT_APP_PLATFORM=CHROME INLINE_RUNTIME_CHUNK=false react-scripts build && npm run build:chrome",
"build:chrome": "npm run build:background && npm run build:syncedEvents && npm run build:manifest",
"build:background": "webpack --mode production ./src/background.js --output ./build/background.js",
"build:syncedEvents": "webpack --mode production ./src/syncedEvents.js --output ./build/syncedEvents.js",
"build:manifest": "cp ./public/manifest.json ./build/manifest.json",
"test": "react-scripts test",
"eject": "react-scripts eject",
"pretty": "prettier --check 'src/**/*.js' --write"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}