-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.84 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
{
"name": "madgrades",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"dom-to-image": "^2.6.0",
"dotenv": "^5.0.1",
"file-saver": "^1.3.3",
"history": "^4.7.2",
"lodash": "^4.17.5",
"normalize.css": "^npm 8.0.0",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.0",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-fastclick": "^3.0.2",
"react-flexbox-grid": "^2.0.0",
"react-meta-tags": "^0.3.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^5.0.1",
"recharts": "^2.1.16",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"sass": "^1.49.9",
"semantic-ui-css": "^2.3.0",
"semantic-ui-react": "^2.1.4",
"universal-cookie": "^2.1.2"
},
"scripts": {
"git-info": "git log -1 --oneline > src/assets/git-rev.txt",
"build-css": "sass -I ./src -I ./node_modules src/:src/ --no-source-map",
"watch-css": "npm run build-css && sass -I src/ ./node_modules src/:src/ --watch",
"start-js": "react-scripts start",
"start": "npm-run-all -p git-info watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all git-info build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build && mv build/index.html build/200.html && surge build",
"deploy-staging": "npm run build && mv build/index.html build/200.html && surge build staging.madgrades.com",
"deploy-prod": "npm run build && mv build/index.html build/200.html && surge build madgrades.com"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"surge": "^0.23.1"
}
}