-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 KB
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
{
"name": "pocket-budget",
"version": "0.9.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.0.0",
"firebase-auth-lite": "^0.8.8",
"firebase-firestore-lite": "^1.0.1",
"papaparse": "^5.1.1",
"react": "^17.0.1",
"react-csv": "^2.0.3",
"react-dom": "^17.0.1",
"react-responsive": "^8.1.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^5.0.0",
"react-toastify": "^7.0.3",
"styled-components": "^5.1.1"
},
"devDependencies": {
"cross-env": "^7.0.2",
"prettier": "^2.0.5",
"timezone-mock": "^1.1.3",
"webpack-bundle-analyzer": "^4.1.0"
},
"scripts": {
"start:firestore": "craco start",
"start:inmemory": "cross-env REACT_APP_MEMORY=1 craco start",
"build": "craco build",
"analyze": "cross-env REACT_APP_INTERACTIVE_ANALYZE=1 npm run build",
"prettier": "prettier --write src/**/*.js",
"eject": "craco eject",
"test": "craco test"
},
"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"
]
}
}