-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.48 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
{
"name": "3d-engine",
"version": "1.0.0",
"description": "use three.js",
"main": "index.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve --config build/webpack.dev.config.js --inline --mode development --hot --host 0.0.0.0",
"build": "webpack --config build/webpack.pro.config.js --mode production",
"postbuild": "node ./scripts/deploy.js production",
"testbuild": "webpack --config build/webpack.pro.config.js --mode production",
"posttestbuild": "node ./scripts/deploy.js test"
},
"keywords": [
"keywords"
],
"author": "obf1313",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/three": "^0.131.0",
"antd": "^4.16.1",
"archiver": "^5.2.0",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"classnames": "^2.2.6",
"dayjs": "^1.8.24",
"node-ssh": "^11.1.1",
"postcss-preset-env": "^6.7.0",
"qs": "^6.9.4",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^5.2.0",
"three": "^0.132.2",
"typescript": "^3.5.3",
"webpack-merge": "^5.7.3"
},
"devDependencies": {
"@types/qs": "^6.9.5",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"antd-dayjs-webpack-plugin": "^1.0.0",
"autoprefixer": "^9.8.6",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.0",
"eslint": "^6.3.0",
"eslint-config-alloy": "^2.1.0",
"eslint-plugin-react": "^7.14.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"less": "^3.12.2",
"less-loader": "^7.0.2",
"mini-css-extract-plugin": "1.2.1",
"postcss": "^8.2.1",
"postcss-loader": "4.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-import-plugin": "^1.6.6",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"url-loader": "^4.1.1",
"webpack": "^5.3.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
}
}