-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2 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
{
"private": true,
"name": "webpack-typescript-react-starter",
"version": "1.0.0",
"repository": "",
"author": "vhbao",
"license": "",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --color --progress",
"build": "cross-env NODE_ENV=production webpack --color --progress",
"start": "cross-env NODE_ENV=development webpack serve --open",
"watch": "webpack --watch"
},
"dependencies": {
"axios": "^0.21.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@babel/eslint-plugin": "^7.12.13",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@babel/runtime": "^7.11.2",
"@types/history": "^4.7.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.27",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.2",
"css-minimizer-webpack-plugin": "^1.2.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.20.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.1",
"file-loader": "^6.2.0",
"html-minimizer-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^5.1.0",
"json-minimizer-webpack-plugin": "^2.1.0",
"mini-css-extract-plugin": "^1.3.6",
"postcss": "^8.2.6",
"postcss-loader": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"process": "^0.11.10",
"resolve-url-loader": "^3.1.2",
"sass": "^1.32.7",
"sass-loader": "^11.0.1",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.5",
"url-loader": "^4.1.1",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}