-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "webpack-starter-pug-scss-js",
"version": "1.0.0",
"description": "Webpack 5 based starter kit for building apps with pug, scss, js.",
"keywords": [
"webpack",
"boilerplate",
"starter",
"entry",
"pug",
"html",
"css",
"sass",
"scss",
"js",
"style",
"pug-plugin",
"pug-loader"
],
"license": "ISC",
"author": "webdiscus (https://github.com/webdiscus)",
"maintainers": [
"webdiscus (https://github.com/webdiscus)"
],
"funding": {
"type": "patreon",
"url": "https://patreon.com/biodiscus"
},
"homepage": "https://github.com/webdiscus/webpack-starter-pug-scss-js",
"bugs": {
"url": "https://github.com/webdiscus/webpack-starter-pug-scss-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdiscus/webpack-starter-pug-scss-js.git"
},
"scripts": {
"start": "webpack serve --mode=development",
"watch": "webpack watch --mode=development",
"build": "webpack --mode=production --progress",
"docs": "webpack --mode=production --env docs=true",
"preview": "npm run build && http-server dist --port 4321 -o",
"test": "echo 'No test specified' && exit 1"
},
"engines": {
"node": ">=16.16.0"
},
"peerDependencies": {
"webpack": ">=5.32.0"
},
"devDependencies": {
"css-loader": "^6.10.0",
"dotenv": "^16.4.5",
"http-server": "^14.1.1",
"markdown-it": "^14.0.0",
"material-icons": "^1.13.12",
"material-symbols": "^0.17.0",
"parse5": "^7.1.2",
"prettier": "^3.2.5",
"prismjs": "^1.29.0",
"pug-plugin": "^5.0.3",
"sass": "1.72.0",
"sass-loader": "^14.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3",
"webpack-merge": "^5.10.0"
}
}