-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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
{
"name": "procrastivuejs",
"description": "A procrastination project with Vue.js and ES6",
"author": "Sergio Ruiz <serginator@gmail.com>",
"private": true,
"scripts": {
"watchify": "watchify -vd -p browserify-hmr -e src/main.js -o dist/build.js",
"serve": "http-server -o -s -c 1 -a '0.0.0.0' -p 8080",
"dev": "npm-run-all --parallel watchify serve",
"build": "cross-env NODE_ENV=production browserify -g envify src/main.js | uglifyjs -c warnings=false -m > dist/build.js",
"pages": "npm run build && cp index.html dist/index.html && sed -i 's/dist\\/build\\.js/build\\.js/g' dist/index.html && mkdir -p dist/src/img && cp src/img/placeholder.png dist/src/img/placeholder.png && gh-pages -d dist -m 'Pushed gh-pages'"
},
"dependencies": {
"vue": "^2.0.1",
"vue-resource": "^1.2.0"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babelify": "^7.2.0",
"browserify": "^13.0.1",
"browserify-hmr": "^0.3.1",
"cross-env": "^1.0.6",
"envify": "^3.4.1",
"gh-pages": "^0.12.0",
"http-server": "^0.9.0",
"npm-run-all": "^2.1.2",
"uglify-js": "^2.5.0",
"vueify": "^9.1.0",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
}
}