-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.83 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
{
"name": "webpack-react",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=aaaa webpack-dev-server --config config/webpack.dev ",
"build": "cross-env NODE_ENV=production && webpack --config ./config/webpack.prod.js --progress ",
"test": "echo \"Error: no test specified\" && exit 1",
"analyz": "cross-env NODE_ENV=production yarn build",
"lint:js": "eslint --fix --ext .js --ext .jsx --ext .ts --ext .tsx src/",
"husky": "bash ./husky.sh",
"prepare": "husky install",
"dev": "webpack-dev-server",
"deps": "yarn upgrade-interactive"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.9",
"@types/three": "^0.132.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.5",
"babel-preset-react-app": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "1.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"happypack": "^5.0.1",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"image-minimizer-webpack-plugin": "^2.2.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.0",
"less": "2.7.3",
"less-loader": "^10.0.1",
"lint-staged": "^11.1.2",
"mini-css-extract-plugin": "^2.3.0",
"node-notifier": "^10.0.0",
"node-sass": "^6.0.1",
"npm-install-webpack-plugin": "3.1.4",
"postcss": "^8.3.8",
"postcss-loader": "^6.1.1",
"postcss-px-to-viewport-8-plugin": "^1.2.0",
"prettier": "2.4.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.52.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"webpack-image-loader": "^0.1.2",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.0-3"
},
"dependencies": {
"antd": "^4.16.13",
"antd-mobile": "^5.20.0",
"axios": "^0.21.4",
"lkx-cli": "^1.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"three": "^0.132.2"
}
}