-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (41 loc) · 1.86 KB
/
package.json
File metadata and controls
52 lines (41 loc) · 1.86 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name" : "angular-material-starter",
"version" : "0.1.0-SNAPSHOT",
"description" : "Angular Material Starter",
"homepage" : "",
"author" : "Fernando Cruz",
"license" : "",
"private" : true,
"devDependencies": {
"bower" : "1.7.7",
"pug-cli" : "1.0.0-alpha6",
"stylus" : "0.54.5",
"babel-cli" : "6.14.0",
"babel-preset-es2015" : "6.16.0",
"onchange" : "3.0.2",
"parallelshell" : "2.0.0",
"live-server" : "0.9.1"
},
"scripts": {
"postinstall" : "mkdir dist",
"bower:help" : "bower help",
"compile:assets" : "cp -R src/assets dist",
"watch:assets" : "onchange \"src/assets/**/*\" -- npm run compile:assets",
"pug:help" : "pug --help",
"compile:html" : "pug --pretty --out dist src",
"watch:html" : "onchange \"src/**/*.pug\" -- npm run compile:html",
"stylus:help" : "stylus --help",
"compile:css" : "stylus --out dist src",
"watch:css" : "onchange \"src/**/*.styl\" -- npm run compile:css",
"babel:help" : "babel --help",
"compile:js" : "babel --presets es2015 --out-dir dist src",
"watch:js" : "onchange \"src/**/*.js\" -- npm run compile:js",
"clean" : "rm -rf dist/*",
"prebuild" : "npm run clean",
"build" : "npm run compile:assets && npm run compile:css && npm run compile:html && npm run compile:js",
"build:watch" : "parallelshell -v \"npm run watch:assets\" \"npm run watch:css\" \"npm run watch:html\" \"npm run watch:js\"",
"live-server:help" : "live-server --help",
"prestart" : "npm update && npm run build && bower update -s",
"start" : "parallelshell \"live-server --quiet --port=9876 dist\" \"npm run build:watch\" "
}
}