-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "herald-web-hybrid",
"version": "1.0.0",
"version-code": 1,
"description": "herald-web-hybrid",
"author": "Rikumi <[email protected]> Wolf-Tungsten <[email protected]>",
"private": true,
"scripts": {
"dev": "parcel index.html --port 8080",
"build": "parcel build index.html",
"deploy": "node ./deploy.js"
},
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "6.26.0",
"better-scroll": "^1.11.1",
"element-ui": "^2.3.9",
"harmony-reflect": "^1.6.0",
"image-compressor.js": "^1.1.4",
"js-cookie": "^2.2.0",
"luxon": "^1.3.2",
"marked": "^0.3.17",
"moment": "^2.24.0",
"qiniu": "^7.2.1",
"qiniu-js": "^2.1.0",
"querystring": "^0.2.0",
"vue": "^2.4.4",
"vue-component-persist": "^1.1.4",
"vue-datetime": "^1.0.0-beta.3",
"vue-l-carousel": "^1.0.1",
"vue-router": "^2.6.0",
"vue-toasted": "^1.1.24",
"weekstart": "^1.0.0",
"xhook": "^1.4.9"
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.1.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-plugin-transform-vue-jsx": "3.7.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-0": "6.24.1",
"less": "^3.10.3",
"normalize.css": "^7.0.0",
"parcel": "1.9.7",
"parcel-plugin-sw-cache": "0.2.6",
"pug": "^2.0.0-rc.4",
"stylus": "^0.54.5",
"vue-hot-reload-api": "^2.3.0",
"vue-template-compiler": "^2.4.4"
},
"babel": {
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-vue-jsx",
[
"module-resolver",
{
"root": "./",
"alias": {
"@": "./src",
"static": "./static",
"vue": "vue/dist/vue"
}
}
]
]
},
"cache": {
"importWorkboxFrom": "local",
"clientsClaim": true
},
"browserslist": [
"ios >= 8",
"android >= 4.1",
"ie >= 10",
"defaults"
]
}