-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "pick-your-units",
"version": "0.1.0",
"private": true,
"homepage": "http://henry-alakazhang.github.io/pick-your-units",
"devDependencies": {
"prettier": "^1.19.1",
"source-map-explorer": "^1.8.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@types/node": "^18.13.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"gh-pages": "^5.0.0",
"react": "^18.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-bootstrap": "^2.7.2",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-select": "^5.7.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "prettier --write 'src/**'",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"analyse": "source-map-explorer build/static/js/*.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}