-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "webpack-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "jest",
"watch": "jest --watch *.js",
"watchAll": "jest --watchAll",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JavedanCode/webpack-template.git"
},
"keywords": [],
"author": "Soren Javedan",
"license": "MIT",
"bugs": {
"url": "https://github.com/JavedanCode/webpack-template/issues"
},
"homepage": "https://github.com/JavedanCode/webpack-template#readme",
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^7.1.4",
"file-loader": "^6.2.0",
"gh-pages": "^6.3.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.6",
"jest": "^30.3.0",
"style-loader": "^4.0.0",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1"
}
}