-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "go-cold",
"version": "1.0.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"clsx": "^1.1.1",
"connected-react-router": "^6.5.2",
"fontfaceobserver": "^2.1.0",
"history": "^4.9.0",
"hoist-non-react-statics": "^3.3.0",
"immer": "^3.2.0",
"intl": "^1.2.5",
"invariant": "^2.2.4",
"lodash": "^4.17.15",
"offline-plugin": "^5.0.7",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-app-polyfill": "^1.0.2",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-intl": "2.8.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.4.1",
"redux": "^4.0.4",
"redux-saga": "^1.0.5",
"reselect": "^4.0.0",
"sanitize.css": "^11.0.0",
"styled-components": "^4.3.2"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "rimraf build",
"build": "npm-run-all build:*",
"build:app": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"build:bg": "webpack --mode production ./src/background/index.js --output ./build/background.js",
"build:bg:dev": "webpack --mode development ./src/background/index.js --output ./build/background.js",
"prezip": "rimraf *.zip",
"zip": "npm-run-all zip:*",
"zip:build": "cd build; zip -r ../build.zip * -x '*.DS_Store'",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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": {
"@babel/core": "^7.10.5",
"npm-run-all": "^4.1.5",
"webpack-cli": "^3.3.12"
}
}