-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.42 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
{
"private": true,
"scripts": {
"watch-js": "watchify -vd -p browserify-hmr -e Resources/Js/App.js -o wwwroot/js/app.js",
"watch-css": "node-sass --watch Resources/Sass/index.scss wwwroot/css/index.css",
"serve": "http-server -s -c -1 -a localhost",
"dev": "npm-run-all --parallel watch-js watch-css serve",
"build-js": "cross-env NODE_ENV=production browserify -g envify Resources/Js/App.js | uglifyjs -c warnings=false -m > wwwroot/js/app.js",
"build-css": "node-sass --including-path scss --output-style compressed Resources/Sass/index.scss wwwroot/css/index.css",
"build": "npm-run-all --parallel build-js build-css"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"axios": "^0.16.1",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"browserify-hmr": "^0.3.5",
"cross-env": "^4.0.0",
"cssnano": "^3.10.0",
"director": "^1.2.8",
"envify": "^4.0.0",
"http-server": "^0.9.0",
"lodash": "^4.17.4",
"node-sass": "^4.5.2",
"normalize.css": "^6.0.0",
"npm-run-all": "^4.0.2",
"postcss": "^5.2.17",
"postcss-cli": "^3.1.1",
"uglify-js": "^2.8.22",
"vue": "^2.2.6",
"vueify": "^9.4.1",
"vuex": "^2.3.0",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"browser": {
"vue": "vue/dist/vue.common.js"
}
}