-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.63 KB
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
{
"name": "webpack-typescript-starter",
"description": "starter for webpack with typescript",
"version": "0.0.0",
"license": "UNLICENSE",
"private": true,
"scripts": {
"test": "jest",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "husky install",
"build": "webpack --env PRODUCTION",
"build:dev": "webpack",
"build:watch": "webpack --watch",
"start:dev": "webpack serve --env DEBUG"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.18.0",
"eslint-webpack-plugin": "^3.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"mini-css-extract-plugin": "^2.6.1",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hungtcs-lab/webpack-typescript-starter.git"
},
"author": "hungtcs <hungtcs@outlook.com> (https://github.com/hungtcs-lab)",
"bugs": {
"url": "https://github.com/hungtcs-lab/webpack-typescript-starter/issues"
},
"homepage": "https://github.com/hungtcs-lab/webpack-typescript-starter#readme"
}