-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 939 Bytes
/
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
{
"name": "react.dev",
"version": "0.0.0",
"main": "/src/index.ts",
"scripts": {
"start": "NODE_ENV=development react-scripts start",
"start-prod": "NODE_ENV=production react-scripts start",
"build": "react-scripts build",
"build-prod": "NODE_ENV=production react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"@types/firebase": "^3.2.1",
"axios": "^1.6.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.22.1",
"react-scripts": "^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"
]
},
"devDependencies": {
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"typescript": "^3.2.1"
}
}