-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"name": "webpack-react-base",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.1",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/webpack": "^4.41.21",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-simple-import-sort": "^5.0.3",
"fork-ts-checker-webpack-plugin": "^5.0.14",
"html-webpack-plugin": "^4.3.0",
"prettier": "^2.0.5",
"react-refresh": "^0.8.3",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.1"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"scripts": {
"develop": "webpack-dev-server",
"build": "yarn webpack --progress --config webpack.config.prod.ts"
}
}