-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "salsa-jobs-web",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn clean && gulp build",
"start": "yarn build && gulp server",
"clean": "rm -rf build/*",
"build:staging": "yarn clean && gulp build --env staging",
"build:production": "yarn clean && gulp build --env production",
"deploy:staging": "yarn build:staging && firebase deploy -P staging",
"deploy:production": "NODE_ENV=production && yarn build:production && firebase deploy -P production"
},
"dependencies": {
"@babel/register": "^7.0.0-beta.42",
"babel": "^6.23.0",
"babel-plugin-transform-node-env-inline": "^0.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-compile-handlebars": "^0.6.1",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.5.0",
"gulp-environments": "^0.1.2",
"gulp-handlebars": "^5.0.2",
"gulp-livereload": "^3.8.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.2.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"devDependencies": {
"firebase-tools": "^3.18.4"
}
}