-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "global-warming",
"version": "0.1.27",
"private": true,
"dependencies": {
"@types/node": "^16.11.22",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"classnames": "^2.3.1",
"gl-matrix": "^3.4.3",
"lodash-es": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"sass": "^1.49.9",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/lodash-es": "^4.17.5",
"prettier": "^2.5.1"
},
"scripts": {
"start": "react-scripts start",
"build": "NODE_ENV=production react-scripts build",
"build:ci": "CI=yes yarn test && yarn build",
"build:pages": "PUBLIC_URL='/global-warming/' yarn build:ci",
"publish:pages": "git checkout main && yarn build:pages && git checkout gh-pages && git rm -r static textures *.html *.txt *.json *.ico *.bin && rm -rf static textures && mv build/* . && git add . && git commit -m \"${npm_package_version}\" && git push && git checkout main",
"test": "yarn test:types",
"test:types": "tsc --noEmit --project tsconfig.json"
},
"packageManager": "[email protected]",
"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"
]
}
}