-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "webpack_template",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"build": "webpack",
"dev": "webpack serve",
"deploy": "git subtree push --prefix dist origin gh-pages",
"lint": "eslint src",
"test": "jest",
"watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndyKhandy/webpack_template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndyKhandy/webpack_template/issues"
},
"homepage": "https://github.com/AndyKhandy/webpack_template#readme",
"devDependencies": {
"@babel/preset-env": "^7.28.6",
"@eslint/js": "^9.39.2",
"css-loader": "^7.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.5",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"style-loader": "^4.0.0",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}