-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.18 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
{
"name": "wheel-es6",
"version": "0.0.0",
"description": "Es6 Starter",
"scripts": {
"dev": "npm run html:dev & npm run css:dev & npm run js:dev & npm run server:dev:static",
"prod": "npm run html:prod & npm run css:prod & npm run js:prod",
"server:dev:static": "browser-sync start --server html --files \"html/*.html, html/**/*.css, html/**/*.js\"",
"server:dev:proxy": "browser-sync start --proxy \"MY-DOMAIN.ME\" --files \"html/*.html, html/**/*.css, html/**/*.js\"",
"html:dev": "pug src/index.pug -o html --doctype html5 --pretty --watch",
"html:prod": "pug src/index.pug -o html --doctype html5",
"css:dev": "stylus --use autoprefixer-stylus --use ./node_modules/stylus-font-face --with {limit:80000} --watch src/css/index.styl -o html/build/css/bundle.css --sourcemap",
"css:prod": "stylus --use autoprefixer-stylus --use ./node_modules/stylus-font-face --with {limit:80000} src/css/index.styl -o html/build/css/bundle.min.css --compress",
"js:dev": "watchify src/js/index.js -d -v -t babelify -t aliasify -o html/build/js/bundle.js",
"js:prod": "browserify src/js/index.js -t babelify -t aliasify -t uglifyify | uglifyjs -c > html/build/js/bundle.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guins/wheel-es6.git"
},
"author": {
"name": "Stéphane Guigné",
"email": "[email protected]",
"url": "http://stephaneguigne.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/guins/wheel-es6/issues"
},
"homepage": "https://github.com/guins/wheel-es6#readme",
"devDependencies": {
"aliasify": "2.1.0",
"autoprefixer-stylus": "0.13.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babelify": "7.3.0",
"browser-sync": "2.18.8",
"browserify": "14.3.0",
"pug": "2.0.0-rc.1",
"pug-cli": "1.0.0-alpha6",
"stylus": "0.54.5",
"stylus-font-face": "1.1.1",
"uglify-es": "3.0.3",
"uglifyify": "3.0.4",
"watchify": "3.9.0"
},
"dependencies": {
"domready": "1.0.8"
},
"babel": {
"presets": [
"es2015",
"stage-3"
],
"ignore": [
"node_modules",
"html/build/**.js"
]
}
}