-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "threejs-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@craco/craco": "^6.1.2",
"@kzlib/kcomponents": "1.0.0",
"@kzlib/khooks": "^1.0.2",
"@kzlib/kmap": "^1.0.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@tweenjs/tween.js": "^18.4.2",
"@types/jest": "^26.0.23",
"@types/node": "^12.20.15",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"ahooks": "^2.10.12",
"antd": "^4.16.5",
"axios": "^0.21.1",
"cannon": "github:schteppe/cannon.js",
"cannon-es": "^0.18.0",
"core-js": "^3.19.1",
"craco-less": "^1.17.1",
"cz-conventional-changelog": "^3.3.0",
"d3": "^7.0.3",
"dat.gui": "^0.7.7",
"dotenv-cli": "^4.0.0",
"echarts": "^4.9.0",
"flv.js": "^1.6.0",
"http-proxy-middleware": "^2.0.1",
"install": "^0.13.0",
"ladash": "^1.2.0",
"moment": "^2.29.1",
"npm": "^7.24.1",
"nprogress": "^0.2.0",
"ol": "^6.9.0",
"ol-echarts": "^2.0.4",
"proj4": "^2.7.5",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"stats.js": "^0.17.0",
"three": "0.135.0",
"three.meshline": "^1.3.0",
"typescript": "^4.3.4",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2",
"xlsx": "^0.17.0",
"xlsx-style": "^0.8.13"
},
"scripts": {
"start": "craco start",
"start:prod": "dotenv -e .env.production craco start",
"build": "dotenv -e .env craco build",
"build:prod": "dotenv -e .env.production craco build",
"test": "craco test",
"eject": "craco eject",
"lint": "eslint src",
"serve": "serve -s build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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/d3": "^7.0.0",
"@types/dat.gui": "^0.7.7",
"@types/lodash": "^4.14.170",
"@types/ol": "^6.5.3",
"@types/react-router-dom": "^5.1.7",
"@types/stats.js": "^0.17.0",
"@types/three": "0.134.0",
"eslint": "^7.31.0",
"husky": "^4.3.0"
},
"husky": {
"hooks": {
"commit-msg": "node ./scripts/git/commit-msg.js -E HUSKY_GIT_PARAMS && echo 'husky eslint' && npm run lint"
}
}
}