forked from TimOetting/kirby-color
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 868 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
{
"scripts": {
"dev": "watchify -vd -p browserify-hmr -e src/main.js -o index.js",
"build": "cross-env NODE_ENV=production browserify -g envify -p [ vueify/plugins/extract-css -o index.css ] -p bundle-collapser/plugin -e src/main.js | uglifyjs -c warnings=false -m > index.js"
},
"browserify": {
"transform": [
"babelify",
"vueify"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"browserify-hmr": "^0.3.7",
"bundle-collapser": "^1.3.0",
"cross-env": "^5.2.0",
"envify": "^4.1.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"uglify-js": "^3.4.7",
"vue": "^2.5.17",
"vue-color": "^2.6.0",
"vueify": "^9.4.1",
"watchify": "^3.11.1"
}
}