-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.04 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.04 KB
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
{
"name": "soujavaVagas",
"version": "0.0.1",
"author": "Ionic Framework",
"homepage": "https://ionicframework.com/",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"ci:clean": "rimraf ./dist",
"ci:test": "ng test --watch=false --browsers=ChromeHeadlessCI",
"ci:build": "ng build --configuration production"
},
"private": true,
"dependencies": {
"@angular/common": "^12.2.16",
"@angular/core": "^19.2.18",
"@angular/forms": "^12.2.16",
"@angular/platform-browser": "^12.2.16",
"@angular/platform-browser-dynamic": "^12.2.16",
"@angular/router": "^12.2.16",
"@ionic-native/core": "^5.36.0",
"@ionic-native/splash-screen": "^5.36.0",
"@ionic-native/status-bar": "^5.36.0",
"@ionic/angular": "^6.5.2",
"cordova-browser": "^6.0.0",
"core-js": "^2.6.12",
"firebase": "^11.2.0",
"marked": "^4.2.12",
"node-forge": ">=1.3.0",
"rxjs": "^6.6.0",
"shelljs": ">=0.8.5",
"tslib": "^2.5.0",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-devkit/architect": "~0.1202.17",
"@angular-devkit/build-angular": "^12.2.18",
"@angular-devkit/core": "~12.2.18",
"@angular-devkit/schematics": "~12.2.18",
"@angular/cli": "~12.2.18",
"@angular/compiler": "^12.2.16",
"@angular/compiler-cli": "^12.2.16",
"@angular/language-service": "^12.2.16",
"@ionic/angular-toolkit": "^6.1.0",
"@ionic/lab": "^3.2.15",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.10",
"@types/marked": "^4.0.8",
"@types/node": "^12.20.55",
"codelyzer": "^6.0.0",
"cordova-plugin-device": "^2.1.0",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "^3.1.2",
"cordova-plugin-splashscreen": "^5.0.4",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-whitelist": "^1.3.5",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.20",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"node-forge": ">=1.3.0",
"protractor": "~7.0.0",
"shelljs": ">=0.8.5",
"ts-node": "^8.10.2",
"tslint": "~6.1.0",
"typescript": "~4.3.5"
},
"overrides": {
"cordova-browser": {
"shelljs": "^0.8.5"
},
"protractor": {
"webdriver-manager": {
"request": {
"har-validator": {
"ajv": "^6.12.3"
}
}
}
},
"@angular-devkit/build-angular": {
"glob-parent": "^6.0.0",
"chokidar": {
"glob-parent": "^6.0.0"
}
}
},
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {}
},
"platforms": [
"browser"
]
}
}