-
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.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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": "static-web",
"version": "1.0.0",
"description": "For starting web project by pug, stylus and typescript via webpack",
"main": "index.js",
"repository": "https://github.com/kazhs/static-web.git",
"scripts": {
"start": "webpack serve",
"build": "rm -rf ./dist && webpack",
"release": "rm -rf ./dist && webpack --mode=production",
"watch": "webpack -w",
"upgrade-interactive": "npm-check --update"
},
"author": "kz",
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"image-webpack-loader": "^7.0.1",
"mini-css-extract-plugin": "^1.4.1",
"nib": "^1.1.2",
"npm-check": "^5.9.2",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"style-loader": "^2.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^5.0.0",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
}
}