-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "minha-hora",
"version": "0.1.0",
"private": true,
"dependencies": {
"chart.js": "^3.3.2",
"currency.js": "^2.0.4",
"immutability-helper": "^2.8.1",
"react": "^17.0.2",
"react-chartjs-2": "^3.0.3",
"react-dom": "17.0.2",
"react-number-format": "^3.6.0",
"react-redux": "^7.2.4",
"react-router": "^4.3.1",
"react-router-dom": "^5.2.0",
"react-router-ga": "^1.2.3",
"react-scripts": "^4.0.3",
"react-select": "^1.0.0-rc.10",
"redux": "^4.1.0"
},
"scripts": {
"build-css": "sass -I ./src -I ./node_modules src/:src/",
"watch-css": "npm run build-css && sass -I ./src -I ./node_modules src/:src/ --watch",
"start-js": "react-scripts start",
"start": "./node_modules/.bin/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"
},
"devDependencies": {
"npm-run-all": "^4.1.3",
"sass": "^1.51.0",
"sass-loader": "^12.6.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}