-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.31 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
{
"name": "es7-sass-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for using ES6/ES7 syntax, modules, and Sass.",
"scripts": {
"start": "npm run sass && npm run watch & npm run serve",
"dist": "npm run js && npm run sass && npm run static",
"watch": "npm run js:watch & npm run sass:watch & npm run static:watch",
"serve": "serve dist",
"gh-deploy": "npm run dist && git-directory-deploy --directory dist/",
"js": "browserify js/main.js -o dist/bundle.js",
"js:watch": "watchify js/main.js -o dist/bundle.js -dv",
"sass": "node-sass --include-path scss scss/main.scss dist/main.css",
"sass:watch": "node-sass -w --include-path scss scss/main.scss dist/main.css",
"static": "cp -R static/ dist/",
"static:watch": "nodemon -w static -e html,json,csv,gif,jpg,png,svg -x \"npm run static\""
},
"author": "ericsoco",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"git-directory-deploy": "^1.5.0",
"node-sass": "^3.7.0",
"nodemon": "^1.9.2",
"serve": "^1.4.0",
"watchify": "^3.7.0"
},
"dependencies": {
"babel-polyfill": "^6.8.0",
"d3": "^4.2.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}