-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "webpack-workflow",
"version": "0.0.1",
"description": "Web app scaffold based on Webpack",
"main": "main.js",
"scripts": {
"clean": "rm -rfv dist/*",
"watch": "yarn html && webpack-dev-server --config webpack.dev.cirru",
"release": "yarn clean && webpack --config webpack.release.cirru && yarn release-html",
"release-local": "yarn clean && webpack --config webpack.release.cirru && local=true yarn release-html",
"html": "cirruscript template.cirru",
"release-html": "env=release cirruscript template.cirru",
"up": "yarn release && tiye-up",
"compile": "cirruscript compile src lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "jiyinyiyong",
"license": "MIT",
"keywords": [
"workflow"
],
"devDependencies": {
"assets-webpack-plugin": "^5.1.1",
"cirru-script": "0.6.2",
"cirru-script-loader": "0.5.5",
"css-loader": "^4.3.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"file-loader": "^6.1.0",
"hsl": "^0.1.1",
"json-loader": "^0.5.3",
"stir-template": "^0.2.2",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^5.94.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-hud": "^0.1.2"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/mvc-works/webpack-workflow.git"
},
"bugs": {
"url": "https://github.com/mvc-works/webpack-workflow/issues"
},
"homepage": "https://github.com/mvc-works/webpack-workflow"
}