-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "budgetparty",
"version": "0.1.0",
"private": true,
"devDependencies": {
"fsevents": "^2.0.7",
"gh-pages": "^1.2.0",
"node-sass": "^4.9.2",
"npm-run-all": "^4.1.3"
},
"dependencies": {
"accounting": "^0.4.1",
"bootstrap": "^3.3.7",
"chart.js": "^2.8.0",
"firebase": "^3.6.1",
"history": "^4.6.3",
"hoek": "^4.2.1",
"moment": "^2.29.4",
"prop-types": "^15.5.9",
"re-base": "4.0.0",
"react": "^15.4.0",
"react-chartjs-2": "^2.7.6",
"react-dom": "^15.4.0",
"react-ga": "^2.2.0",
"react-intl": "^2.3.0",
"react-redux": "^5.0.4",
"react-router-dom": "^4.0.0-beta.8",
"react-scripts": "3.1.1",
"redux": "^3.6.0",
"underscore": "^1.8.3"
},
"scripts": {
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"resolutions": {
"**/**/fsevents": "^1.2.9",
"**/**/node-gyp": "5.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}