-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
112 lines (112 loc) · 3.98 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "whu-library-seat-mobile",
"version": "1.7.5",
"author": "CS-Tao <[email protected]>",
"description": "武汉大学图书馆助手",
"license": null,
"scripts": {
"check": "cordova requirements",
"dev": "cross-env PORT=3000 node build/dev-server.js",
"build": "node build/build.js",
"build:browser": "node build/build.js && cordova prepare browser",
"build:ios": "node build/build.js && cordova prepare ios && cordova build ios",
"build:android": "node build/build.js && cordova prepare android && cordova build android",
"genkey:apk": "keytool -genkey -v -keystore release-key.keystore -alias whu-library-seat-mobile -keyalg RSA -keysize 2048 -validity 10000",
"release:android": "cordova prepare android && cordova build android --release -- --keystore=\"release-key.keystore\" --alias=whu-library-seat-mobile --storePassword=$STORE_PASSWORD --password=$STORE_PASSWORD",
"release:ios": "cordova prepare ios && cordova build ios --release --device --packageType=app-store --developmentTeam=$IOS_APPLE_ID --provisioningProfile=$IOS_PP --buildFlag='-UseModernBuildSystem=0'",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter --fix src",
"postinstall": "npm run lint:fix",
"prepare": "cordova prepare"
},
"dependencies": {
"axios": "^0.18.0",
"cordova-android": "~7.1.1",
"cordova-browser": "~5.0.4",
"cordova-ios": "4.5.5",
"cordova-plugin-advanced-http": "^2.0.1",
"cordova-plugin-background-mode": "git+https://github.com/katzer/cordova-plugin-background-mode.git",
"cordova-plugin-badge": "^0.8.7",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-file": "^6.0.1",
"cordova-plugin-local-notification": "^0.9.0-beta.2",
"cordova-plugin-whitelist": "1",
"element-ui": "2.4.4",
"js-md5": "^0.7.3",
"mockjs": "^1.0.1-beta3",
"socket.io-client": "^2.2.0",
"storejs": "^1.0.20",
"vue": "^2.5.17",
"vue-markdown": "^2.2.4",
"vue-router": "^3.0.1",
"vuetrend": "^0.3.4",
"vuex": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^9.3.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"cfonts": "^2.2.3",
"chalk": "^2.1.0",
"connect-history-api-fallback": "^1.5.0",
"cordova-plugin-whitelist": "1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"escape-string-regexp": "^1.0.5",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"function-bind": "^1.1.1",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.0",
"node-loader": "^0.6.0",
"node-sass": "^4.9.4",
"opn": "^5.4.0",
"ora": "^3.0.0",
"sass-loader": "^7.1.0",
"semver": "^5.6.0",
"shelljs": "^0.8.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue-html-loader": "^1.2.4",
"vue-loader": "^13.7.2",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.17",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"cordova": {
"platforms": [
"android",
"browser",
"ios"
],
"plugins": {
"cordova-plugin-advanced-http": {},
"cordova-plugin-background-mode": {},
"cordova-plugin-local-notification": {},
"cordova-plugin-whitelist": {}
}
}
}