-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.26 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
{
"jspm": {
"dependencies": {
"css": "github:systemjs/plugin-css@^0.1.31",
"font": "github:systemjs/system-font@^0.1.0",
"image": "github:systemjs/plugin-image@^0.1.0",
"json": "github:systemjs/plugin-json@^0.2.0",
"text": "github:systemjs/plugin-text@^0.0.9"
},
"devDependencies": {
"systemjs-builder": "npm:systemjs-builder@^0.15.32",
"typescript": "npm:typescript@^1.6.2"
}
},
"devDependencies": {
"clean-css": "latest",
"jshint": "latest",
"live-reload": "latest",
"node-minify": "latest",
"node-sass": "latest",
"parallelshell": "latest",
"pug": "latest",
"pug-cli": "latest",
"uglifyjs": "latest"
},
"scripts": {
"build": "parallelshell 'rm dist/css/*' 'rm dist/js/*'",
"build:css": "node-sass --include-path scss public/css",
"build:js": "",
"build:pug2html": "pug -p -D pug/*.pug --out public/",
"clean": "rm -r dist/*",
"prebuild:js": "npm run lint",
"lint": "jshint **.js",
"livereload": "live-reload --port 9091 dist/",
"watch:pug": "pug -w -p-D pug/*.pug --out public/",
"watch:css": "node-sass --output-style compact --watch scss/*.scss --output public/css",
"watch": "parallelshell 'npm run watch:css' 'npm run watch:pug'"
}
}