-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1 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
{
"name": "kickstart-typescript",
"version": "1.0.0",
"author": "Rainer Bezzina",
"main": "index.js",
"license": "MIT",
"scripts": {
"webpack:start": "webpack serve --mode=development",
"webpack:build": "webpack --mode=production",
"webpack:view": "lite-server --baseDir='dist'"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-webpack-plugin": "^2.5.2",
"html-webpack-plugin": "^5.2.0",
"lite-server": "^2.6.1",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}