-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "stahlstadt-js-website",
"description": "stahlstadt-js-website using Storyblok",
"private": false,
"version": "0.0.1",
"babel": {
"presets": [
"env"
]
},
"scripts": {
"watchify": "watchify -vd -e source/js/scripts.js -o views/assets/js/scripts.js",
"dev": "npm-run-all --parallel watchify gulp",
"gulp": "node ./node_modules/gulp/bin/gulp.js",
"build": "npm run minify && node ./node_modules/gulp/bin/gulp.js build",
"minify": "browserify source/js/scripts.js | uglifyjs -c > views/assets/js/scripts.min.js",
"deploy:dev": "npm run minify && node ./node_modules/gulp/bin/gulp.js deploy:dev",
"deploy:live": "npm run minify && node ./node_modules/gulp/bin/gulp.js deploy:live"
},
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"babel-core": "^6.20.0",
"babel-preset-env": "^1.6.0",
"babelify": "^7.3.0",
"browser-sync": "^2.18.13",
"gulp": "^3.9.1",
"gulp-blok": "^1.1.3",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sass-glob": "^1.0.8",
"gulp-watch": "^4.3.11",
"npm-run-all": "^4.1.1",
"portfinder": "^1.0.13",
"uglify-js": "^3.1.3",
"watchify": "^3.9.0"
},
"repository": "https://github.com/storyblok/quickstart.git",
"author": "Dominik Angerer <dominikangerer1@gmail.com>",
"license": "MIT"
}