-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.87 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
{
"name": "games-timers",
"description": "Games Timers is an application helping you to manage video and gaming usage duration for your kids",
"version": "0.0.2",
"author": "Richard Lasjunies",
"homepage": "http://cpairelasjunies.com/",
"private": true,
"scripts": {
"clean": "ionic-app-scripts clean",
"lint": "ionic-app-scripts lint",
"serve": "ionic serve",
"build": "ionic build",
"emulate": "ionic cordova emulate android --consolelogs --livereload --address 192.168.1.36 ",
"device": "ionic cordova run android --target=3300b09b174ab2cb",
"device:debug": "ionic cordova run android --consolelogs --livereload --address 192.168.1.36 ",
"release": "ionic cordova build --release --prod android",
"release:pwa": "rm -rf www && ionic-app-scripts build --prod",
"test": "karma start ./test-config/karma.conf.js",
"test:ci": "karma start ./test-config/karma.conf.js --single-run",
"test:coverage": "karma start ./test-config/karma.conf.js --coverage",
"e2e-update": "webdriver-manager update --standalone false --gecko false",
"e2e-test": "protractor ./test-config/protractor.conf.js",
"e2e": "npm run e2e-update && npm run e2e-test"
},
"dependencies": {
"@angular/common": "5.0.3",
"@angular/compiler": "5.0.3",
"@angular/compiler-cli": "5.0.3",
"@angular/core": "5.0.3",
"@angular/forms": "5.0.3",
"@angular/http": "5.0.3",
"@angular/platform-browser": "5.0.3",
"@angular/platform-browser-dynamic": "5.0.3",
"@ionic-native/background-mode": "^4.4.2",
"@ionic-native/core": "4.4.0",
"@ionic-native/local-notifications": "^4.4.2",
"@ionic-native/native-audio": "^4.4.2",
"@ionic-native/splash-screen": "4.4.0",
"@ionic-native/status-bar": "4.4.0",
"@ionic-native/text-to-speech": "^4.5.2",
"@ionic/storage": "2.1.3",
"codelyzer": "^4.0.2",
"cordova-android": "6.4.0",
"cordova-plugin-background-mode": "^0.7.2",
"cordova-plugin-console": "1.1.0",
"cordova-plugin-device": "1.1.7",
"cordova-plugin-splashscreen": "~4.0.1",
"cordova-plugin-statusbar": "2.3.0",
"cordova-plugin-tts": "^0.2.3",
"cordova-plugin-whitelist": "1.3.3",
"ionic-angular": "^3.9.2",
"ionic-plugin-keyboard": "~2.2.1",
"ionicons": "3.0.0",
"moment": "^2.18.1",
"rxjs": "5.5.2",
"sw-toolbox": "3.6.0",
"tsutil": "^6.1.1",
"zone.js": "0.8.18"
},
"config": {
"ionic_webpack": "webpack.config.js"
},
"devDependencies": {
"@ionic/app-scripts": "^3.1.7",
"@types/core-js": "^0.9.44",
"@types/jasmine": "^2.8.2",
"@types/node": "^8.0.53",
"angular2-template-loader": "^0.6.2",
"html-loader": "^0.4.5",
"ionic": "3.19.1",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine": "^2.5.3",
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"null-loader": "^0.1.1",
"protractor": "^5.2.2",
"ts-loader": "^2.0.3",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "2.4.2"
},
"cordovaPlugins": [
"cordova-plugin-whitelist",
"cordova-plugin-statusbar",
"cordova-plugin-device",
"cordova-plugin-splashscreen",
"ionic-plugin-keyboard"
],
"cordovaPlatforms": [],
"main": "index.js",
"license": "MIT",
"cordova": {
"plugins": {
"ionic-plugin-keyboard": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-console": {},
"cordova-plugin-device": {},
"cordova-plugin-background-mode": {},
"cordova-plugin-tts": {}
},
"platforms": [
"android"
]
}
}