-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.4 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
{
"name": "App",
"version": "0.1.0",
"scripts": {
"make": "elm-make src/js/Main.elm --output build/index.html",
"sass:watch": "sass --watch src/css/style.scss:build/css/style.css & gulp watch",
"start:compass": "compass watch css/",
"start:sass": "sass --watch src/css/style.scss:./build/css/style.css",
"start": "ENV=dev webpack -p -d --watch & npm run build:watch & npm run serve",
"build": "npm run babel & npm run jade & npm run copy-build & gulp shim",
"build:watch": "npm run babel:watch & npm run sass:watch & npm run copy-build:watch & gulp shim",
"dist": "npm run build && npm run copy-dist && r.js -o build.js",
"jade": "jade src -o build",
"jade:watch": "npm run jade -- -w",
"babel": "babel src --ignore \"vendor, *.es5.js\" --modules amd --source-maps --out-dir build --optional es7.comprehensions",
"babel:watch": "babel src --ignore \"vendor, *.es5.js\" --modules amd --source-maps --out-dir build --optional es7.comprehensions -w",
"copy-build": "gulp copy-build",
"copy-build:watch": "gulp copy-build:watch",
"copy-dist": "gulp copy-dist",
"postinstall": "",
"lint": "gulp lint",
"lint:watch": "gulp lint:watch",
"serve": "gulp browser-sync",
"deploy-alpha": "aws s3 sync --acl public-read --exclude '*.DS_Store' --exclude '*.jade' --exclude '*.styl' build s3://alpha.blueraster.io/hl/quick-layers-entry/",
"deploy-alpha:gzip": "aws s3 sync --acl public-read --content-encoding gzip --exclude '*.DS_Store' --exclude '*.jade' --exclude '*.styl' build s3://alpha.blueraster.io/hl/quick-layers-entry/",
"delete-alpha": "aws s3 rm --recursive s3://alpha.blueraster.io/hl/quick-layers-entry/"
},
"dependencies": {
"babel": "^5.4.7",
"babel-eslint": "^5.0.0-beta6",
"bower": "^1.4.1",
"browser-sync": "^2.7.6",
"eslint-plugin-react": "^3.4.1",
"gulp": "^3.8.1",
"gulp-autoprefixer": "0.0.7",
"gulp-eslint": "^0.12.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-stylus": "^2.0.2",
"gulp-umd": "^0.2.0",
"gulp-watch": "^4.2.4",
"jade": "^1.10.0",
"mapbox-gl": "^0.31.0",
"mapbox.js": "^3.0.1",
"react": "^0.14.0",
"react-router": "^3.0.0",
"request": "^2.58.0"
},
"devDependencies": {
"gulp-plumber": "^1.1.0",
"gulp-sass": "^2.3.1",
"gulp-sourcemaps": "^1.6.0",
"sass": "^0.5.0",
"eslint": "^1.10.0",
"gulp-intern": "0.0.4",
"gulp-shell": "^0.5.1"
}
}