-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.96 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
{
"name": "rosie-prototype",
"version": "0.0.1",
"author": "OSET Foundation",
"homepage": "https://www.osetfoundation.org/",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"format:write": "prettier . --write",
"format:check": "prettier . --check",
"resources": "cordova-res ios && cordova-res android && node scripts/resources.js",
"prepare": "husky install"
},
"engines": {
"node": "16.4.2",
"npm": "7.18.1"
},
"private": true,
"dependencies": {
"@angular/common": "~12.0.1",
"@angular/core": "~12.0.1",
"@angular/forms": "~12.0.1",
"@angular/platform-browser": "~12.0.1",
"@angular/platform-browser-dynamic": "~12.0.1",
"@angular/router": "~12.0.1",
"@angular/service-worker": "~12.0.1",
"@capacitor/android": "3.1.2",
"@capacitor/app": "1.0.0",
"@capacitor/browser": "^1.0.2",
"@capacitor/core": "^3.1.2",
"@capacitor/haptics": "1.0.0",
"@capacitor/ios": "3.0.2",
"@capacitor/keyboard": "1.0.0",
"@ionic-native/in-app-browser": "^5.36.0",
"@ionic/angular": "^5.5.2",
"cordova-plugin-inappbrowser": "^5.0.0",
"cordova-res": "^0.15.4",
"crypto-browserify": "^3.12.0",
"rxjs": "~6.6.0",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.1",
"@angular-eslint/builder": "~12.0.0",
"@angular-eslint/eslint-plugin": "~12.0.0",
"@angular-eslint/eslint-plugin-template": "~12.0.0",
"@angular-eslint/template-parser": "~12.0.0",
"@angular/cli": "~12.0.1",
"@angular/compiler": "~12.0.1",
"@angular/compiler-cli": "~12.0.1",
"@angular/language-service": "~12.0.1",
"@capacitor/cli": "3.0.0",
"@ionic/angular-toolkit": "^4.0.0",
"@nrwl/cypress": "^13.4.3",
"@nrwl/workspace": "^13.1.4",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"cypress": "^9.2.0",
"eslint": "^7.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-unused-imports": "^1.1.5",
"husky": "^7.0.2",
"jasmine-core": "~3.7.1",
"jasmine-spec-reporter": "~5.0.0",
"jetifier": "^2.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"ts-node": "~8.3.0",
"typescript": "~4.2.4"
},
"description": "An OSET foundation project",
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{js,ts,css,scss,md}": "prettier --write"
}
}