forked from svetlanamorozko/TS-In-Depth-WebpackEnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 776 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
{
"name": "typescript-in-depth-webpack",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"start": "webpack serve",
"build": "webpack --config webpack.config.js",
"watch": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Vitaliy Zhyrytskyy",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.26.0",
"html-webpack-plugin": "^4.5.2",
"prettier": "^2.3.0",
"ts-loader": "^8.3.0",
"typescript": "^4.6.3",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}