-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.05 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
{
"name": "bee-notes",
"version": "0.0.1",
"author": "Johannes Charra",
"homepage": "https://beenotesapp.charra.de",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"deploy": "ionic build --prod -- --base-href https://beenotesapp.charra.de && npx angular-cli-ghpages --dir=www",
"i18n": "pushd src/assets/i18n && python3 check.py && popd",
"cypress:open": "./node_modules/cypress/bin/cypress open",
"cypress:run": "./node_modules/cypress/bin/cypress run --config video=false",
"cypress:all": "./node_modules/cypress/bin/cypress run --config video=true --spec \"cypress/**/*.spec.js\""
},
"private": true,
"dependencies": {
"@angular/common": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/fire": "^7.5.0",
"@angular/forms": "^14.3.0",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"@angular/service-worker": "^14.3.0",
"@awesome-cordova-plugins/core": "^6.8.0",
"@awesome-cordova-plugins/geolocation": "^6.8.0",
"@awesome-cordova-plugins/in-app-purchase-2": "^6.8.0",
"@capacitor-community/in-app-review": "^6.0.0",
"@capacitor/android": "^6.0.0",
"@capacitor/app": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@capacitor/keyboard": "^6.0.0",
"@capacitor/local-notifications": "^6.0.0",
"@capacitor/preferences": "^6.0.2",
"@capacitor/splash-screen": "^6.0.0",
"@capacitor/status-bar": "^6.0.0",
"@ionic/angular": "^7.8.6",
"@ionic/core": "^7.8.6",
"@ionic/storage": "^3.0.6",
"@ionic/storage-angular": "^3.0.6",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"angular-cli-ghpages": "^1.0.5",
"cordova-plugin-geolocation": "^4.1.0",
"cordova-plugin-purchase": "^10.6.1",
"cordova-res": "^0.15.4",
"date-fns": "^2.29.3",
"firebase": "^9.14.0",
"firebase-admin": "^11.3.0",
"rxjs": "^7.5.0",
"tslib": "^2.4.1",
"zone.js": "^0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.13",
"@angular/cli": "^14.2.13",
"@angular/compiler": "^14.3.0",
"@angular/compiler-cli": "^14.3.0",
"@angular/language-service": "^14.3.0",
"@capacitor/cli": "^6.0.0",
"@ionic/angular-toolkit": "^6.1.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.20.55",
"cypress": "^9.7.0",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.8.4"
},
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-geolocation": {
"GPS_REQUIRED": "false"
}
}
}
}