-
-
Notifications
You must be signed in to change notification settings - Fork 433
/
Copy pathpackage.json
36 lines (36 loc) · 1015 Bytes
/
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
{
"name": "fork-ts-checker-webpack-plugin",
"version": "1.0.0",
"main": "dist/main.js",
"license": "MIT",
"scripts": {
"start": "webpack serve --mode=development",
"prebuild": "rimraf ./dist/*",
"build": "webpack --mode=production",
"lint": "eslint ./src"
},
"devDependencies": {
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"fork-ts-checker-notifier-webpack-plugin": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.8",
"html-webpack-plugin": "^5.5.0",
"prettier": "2.6.2",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.9",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
}
}