-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.39 KB
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
{
"name": "webpack-react-typescript-starter",
"description": "react starter for webpack with typescript",
"version": "0.0.0",
"license": "UNLICENSE",
"scripts": {
"webpack": "webpack",
"build": "NODE_ENV=production webpack",
"start:dev": "webpack serve",
"prepublish": "npm run build"
},
"author": "鸿则 <hungtcs@outlook.com> (https://github.com/hungtcs-lab)",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hungtcs-lab/webpack-react-typescript-starter.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/hungtcs-lab/webpack-react-typescript-starter/issues"
},
"homepage": "https://github.com/hungtcs-lab/webpack-react-typescript-starter#readme",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@svgr/webpack": "^6.2.1",
"@types/node": "^17.0.22",
"@types/react": "^17.0.41",
"@types/react-dom": "^17.0.14",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}