-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 963 Bytes
/
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
{
"private": false,
"version": "1.0.0",
"name": "demo-boilerplate",
"description": "Basic atomic design boilerplate to kickstart new front-end resource projects for https://www.robsimpson.me",
"main": "gulpfile.babel.js",
"author": {
"name": "Rob Simpson",
"url": "https://www.robsimpson.me"
},
"repository": {
"type": "git",
"url": "https://github.com/robcsimps/demo-boilerplate"
},
"scripts": {
"dev": "gulp | webpack --watch"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-file-include": "^1.2.0",
"gulp-sass": "^4.0.1",
"gulp-server-livereload": "^1.9.2"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"send": "^0.16.2",
"serve-index": "^1.9.1"
}
}