-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"version": "2.0.0",
"description": "webpack typescript starter",
"name": "webpack-typescript-starter",
"keywords": [
"webpack",
"typescript",
"boilerplate",
"sass"
],
"author": "Hamza Hamidi",
"license": "MIT",
"engines": {
"node": "^18.0.0",
"npm": "^8.0.0"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.14",
"@swc/jest": "^0.2.23",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@webpack-cli/init": "^1.1.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^3.0.0",
"codecov": "^3.8.3",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"html-webpack-plugin": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.1.2",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^6.0.0",
"sass-loader": "^12.6.0",
"swc-loader": "^0.2.3",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^5.8.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack",
"coverage": "jest --collect-coverage",
"test": "jest --watchAll",
"build": "cross-env NODE_ENV=production webpack"
}
}