-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
47
48
49
{
"name": "sandharborws",
"description": "sandharborws website",
"private": true,
"scripts": {
"watchify": "watchify -vd -p browserify-hmr -e src/main.js -o dist/build.js",
"serve": "http-server dist -c 1 -a localhost",
"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"
},
"dependencies": {
"bootstrap": "^3.3.7",
"font-awesome": "^4.7.0",
"jquery": "^3.1.0",
"lodash": "^4.15.0",
"q": "^1.4.1",
"swiper": "^4.2.0",
"vue": "^2.0.3",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-latest": "^6.16.0",
"babelify": "^8.0.0",
"browserify": "^16.1.0",
"browserify-hmr": "^0.3.1",
"cross-env": "^5.1.3",
"envify": "^4.0.0",
"http-server": "^0.11.1",
"less": "^3.0.1",
"npm-run-all": "^4.0.0",
"uglify-js": "^3.3.9",
"vueify": "^9.2.4",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"babel": {
"presets": [
"es2015"
]
}
}