-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "js-template",
"version": "0.0.1",
"private": true,
"description": "quickstart template",
"scripts": {
"clean": "rm -rf node_modules dist/*",
"build": "webpack",
"watch": "webpack-dev-server --progress --open",
"lint": "eslint . && stylelint src/style/**/*.scss"
},
"author": "Adrian Bastholm <[email protected]",
"license": "UNLICENSED",
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-standard": "^4.1.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.3",
"raw-loader": "^4.0.2",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.13.0",
"stylelint-config-standard": "^28.0.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"uuid": "^9.0.0"
}
}