-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
58 lines (58 loc) · 1.9 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
{
"name": "@modus/beep",
"version": "1.0.5",
"description": "A security oriented project showcasing the power of Ionic4 and Vuejs",
"author": "Michael Tintiuc <[email protected]>",
"user": "michaeltintiuc",
"license": "MIT",
"repository": "github:ModusCreateOrg/beep",
"main": "dist/index.html",
"bugs": {
"url": "https://github.com/ModusCreateOrg/beep/issues"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"scripts": {
"start": "npm run build",
"serve": "vue-cli-service serve & node ./proxy.js",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:ui": "cd tests_root/wdio && npm run test:local:chrome",
"build-android": "npm run build && npx cap sync android",
"build-ios": "npm run build && npx cap sync ios",
"build-native": "npm run build-android && npm run build-ios"
},
"dependencies": {
"@capacitor/android": "1.0.0-beta.11",
"@capacitor/cli": "1.0.0-beta.11",
"@capacitor/core": "1.0.0-beta.11",
"@capacitor/ios": "1.0.0-beta.11",
"cordova-plugin-market": "git+https://github.com/xmartlabs/cordova-plugin-market.git",
"@ionic/core": "4.0.1",
"@modus/ionic-vue": "^1.2.7",
"axios": "0.18.0",
"register-service-worker": "^1.5.2",
"sha1": "1.1.1",
"vue": "^2.5.22",
"vue-router": "^3.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-plugin-pwa": "^3.3.0",
"@vue/cli-plugin-unit-jest": "^3.3.0",
"@vue/cli-service": "^3.3.1",
"@vue/eslint-config-prettier": "^3.0.5",
"@vue/test-utils": "1.0.0-beta.24",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"bodymovin": "^4.13.0",
"eslint-plugin-promise": "3.8.0",
"express": "^4.16.4",
"request": "^2.88.0",
"vue-template-compiler": "^2.5.22"
}
}