-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
117 lines (117 loc) · 4.48 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
113
114
115
116
117
{
"name": "polyonic",
"productName": "Polyonic App",
"description": "An Ionic project",
"version": "3.0.6",
"author": {
"name": "Your Name",
"email": "[email protected]",
"url": "http://yourwebsite.com"
},
"repository": "https://github.com/paulsutherland/polyonic",
"copyright": "© 2018, Your Name",
"private": true,
"main": "electron.js",
"scripts": {
"build:electron": "ng build --base-href ./",
"build:electron:dev": "npm run build:electron -- -c dev",
"build:electron:prod": "npm run build:electron -- -c production",
"electron:dev": "export NODE_ENV=development || set NODE_ENV=development && npm-run-all -p ng:serve electron:serve",
"electron:dev:debug": "npm-run-all -p ng:serve electron:serve:debug",
"electron:dev:debug-live": "npm-run-all -p ng:serve electron:serve:debug-live",
"electron:serve": "wait-on http-get://localhost:4200/ && run-electron . --serve",
"electron:serve:debug": "wait-on http-get://localhost:4200/ && run-electron --inspect-brk=9229 . --serve",
"electron:serve:debug-live": "wait-on http-get://localhost:4200/ && nodemon --watch electron.js --exec run-electron --inspect-brk=9229 . --serve",
"electron:local": "npm run build:electron:prod && run-electron .",
"electron:linux": "npm run build:electron:prod && npx electron-builder build --linux",
"electron:windows": "npm run build:electron:prod && npx electron-builder build --windows",
"electron:mac": "npm run build:electron:prod && npx electron-builder build --mac",
"ionic": "npm run ng:serve:web",
"emulate:ios-dev": "ionic cordova emulate ios --l",
"run:ios-dev": "ionic cordova run ios --l --device",
"emulate:ios": "ionic cordova emulate ios",
"run:ios": "ionic cordova run ios --device",
"release:ios": "ionic cordova build ios --prod --release",
"emulate:android-dev": "ionic cordova emulate android --l",
"run:android-dev": "ionic cordova run android --device --l",
"emulate:android": "ionic cordova emulate android",
"run:android": "ionic cordova run android --device",
"release:android": "ionic cordova build android --prod --release ",
"ng": "ng",
"ng:serve": "ng serve",
"ng:serve:web": "ng serve -o",
"test": "ng test",
"e2e": "ng e2e",
"xcode": "open -a Xcode platforms/ios/"
},
"dependencies": {
"@angular/common": "11.2.6",
"@angular/core": "11.2.6",
"@angular/forms": "11.2.6",
"@angular/platform-browser": "11.2.6",
"@angular/platform-browser-dynamic": "11.2.6",
"@angular/router": "11.2.6",
"@ionic-native/core": "5.31.1",
"@ionic-native/splash-screen": "5.31.1",
"@ionic-native/status-bar": "5.31.1",
"@ionic/angular": "5.6.1",
"cordova-android": "9.0.0",
"cordova-ios": "6.2.0",
"cordova-plugin-device": "2.0.3",
"cordova-plugin-ionic-keyboard": "2.2.0",
"cordova-plugin-ionic-webview": "^5.0.0",
"cordova-plugin-splashscreen": "^6.0.0",
"cordova-plugin-statusbar": "2.4.3",
"cordova-plugin-whitelist": "1.3.4",
"cordova-sqlcipher-adapter": "^0.5.3",
"core-js": "3.9.1",
"polyonic-secure-pouch": "1.0.7",
"pouchdb": "7.2.2",
"pouchdb-adapter-cordova-sqlite": "2.0.8",
"run-electron": "1.0.0",
"rxjs": "6.6.6",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.5",
"@angular/cli": "~11.2.5",
"@angular/compiler": "11.2.6",
"@angular/compiler-cli": "11.2.6",
"@angular/language-service": "11.2.6",
"@ionic/angular-toolkit": "^3.1.1",
"@types/jasmine": "3.6.7",
"@types/jasminewd2": "2.0.8",
"@types/node": "14.14.35",
"codelyzer": "6.0.1",
"electron": "11.3.0",
"electron-builder": "22.10.5",
"husky": "5.1.3",
"jasmine-core": "3.7.1",
"jasmine-spec-reporter": "6.0.0",
"karma": "6.2.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"nodemon": "^2.0.7",
"npm-run-all": "4.1.5",
"protractor": "7.0.0",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.1.5",
"wait-on": "5.3.0"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-sqlcipher-adapter": {},
"cordova-plugin-androidx-adapter": {}
},
"platforms": []
}
}