-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.4 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
{
"name": "nearby-client",
"description": "Spontaneous, ephemeral conversation channels, based on user location",
"repository": {
"type": "git",
"url": "https://github.com/gsoldevila/nearby-client.git"
},
"version": "0.1.1",
"author": "Gerard Soldevila",
"homepage": "http://ionicframework.com/",
"private": true,
"scripts": {
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"lint": "ionic-app-scripts lint",
"ionic:build": "ionic-app-scripts build",
"ionic:serve": "ionic-app-scripts serve",
"prod": "ionic-app-scripts build --prod --aot --minifyjs --minifycss --optimizejs --appNgModulePath src/app/app.module.prod.ts --wwwDir www.prod",
"test": "karma start ./test-config/karma.conf.js",
"test-ci": "karma start ./test-config/karma.multi.conf.js --single-run",
"test-coverage": "karma start ./test-config/karma.conf.js --coverage",
"e2e": "npm run e2e-update && npm run e2e-test",
"e2e-test": "protractor ./test-config/protractor.conf.js",
"e2e-update": "webdriver-manager update --standalone false --gecko false"
},
"config": {
"ionic_webpack": "webpack.config.js"
},
"dependencies": {
"@angular/common": "^5.0.3",
"@angular/compiler": "^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/core": "^4.4.2",
"@ionic-native/splash-screen": "^4.4.2",
"@ionic-native/sqlite": "^4.4.2",
"@ionic-native/status-bar": "^4.4.2",
"@ionic/storage": "^2.1.3",
"@ngrx/effects": "^4.1.1",
"@ngrx/store": "^4.1.1",
"angular-linky": "^1.2.2",
"angular2-moment": "^1.7.0",
"cordova-android": "6.4.0",
"cordova-browser": "5.0.1",
"cordova-plugin-device": "^1.1.7",
"cordova-plugin-ionic-webview": "^1.1.16",
"cordova-plugin-splashscreen": "^4.1.0",
"cordova-plugin-statusbar": "^2.3.0",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-sqlite-storage": "^2.1.2",
"ionic-angular": "^3.9.2",
"ionic-plugin-keyboard": "^2.2.1",
"ionicons": "3.0.0",
"ng-socket-io": "^0.2.0",
"ngrx-store-ionic-storage": "^4.1.2",
"rxjs": "^5.5.2",
"socket.io-client": "^2.0.4",
"sw-toolbox": "3.6.0",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/compiler-cli": "^5.0.3",
"@ionic/app-scripts": "3.1.2",
"@types/jasmine": "^2.8.2",
"@types/node": "^8.0.53",
"angular2-template-loader": "^0.6.2",
"html-loader": "^0.5.1",
"jasmine": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-opera-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"null-loader": "^0.1.1",
"protractor": "^5.2.0",
"ts-loader": "^3.1.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "2.6.1"
},
"cordova": {
"plugins": {
"cordova-sqlite-storage": {},
"ionic-plugin-keyboard": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-statusbar": {}
},
"platforms": [
"browser",
"android"
]
}
}