-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 866 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
{
"name": "zengo",
"version": "0.1.0",
"mode": "development",
"dependencies": {
"axios": "^0.19.0",
"babelify": "^10.0.0",
"bootstrap": "^4.3.1",
"browserify": "^16.5.0",
"browserify-hmr": "^0.4.0",
"concurrently": "^4.1.1",
"jquery": "^3.5.0",
"node-sass": "^4.13.1",
"popper.js": "^1.15.0",
"toastr": "^2.1.4",
"vue": "^2.6.10",
"vueify": "^9.4.1",
"watchify": "^3.11.1"
},
"browser": {
"vue": "vue/dist/vue.common.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"scss": "node-sass --watch src/scss -o dist/css",
"vueify": "watchify -p browserify src/js/app.js -o dist/js/app.js",
"dev": "concurrently --kill-others \"npm run scss\" \"npm run vueify\""
}
}