-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 898 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 898 Bytes
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
{
"name": "tgthon",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/antd": "^1.0.0",
"@types/react-router-dom": "^5.1.8",
"antd": "^4.16.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"webpack": "^5.45.1",
"webpack-dev-server": "^3.11.2"
},
"devDependencies": {
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/webpack": "^5.28.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"node-sass": "^6.0.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack-cli": "^4.7.2"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress",
"start": "NODE_ENV=development webpack serve --progress"
}
}