-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.21 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
{
"name": "elroy",
"version": "0.0.1",
"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"
},
"engines": {
"node": "16.4.2",
"npm": "7.18.1"
},
"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",
"@capacitor/android": "3.1.1",
"@capacitor/app": "1.0.2",
"@capacitor/core": "3.1.1",
"@capacitor/filesystem": "^1.0.3",
"@capacitor/haptics": "1.0.2",
"@capacitor/ios": "3.1.1",
"@capacitor/keyboard": "1.0.2",
"@capacitor/splash-screen": "^1.1.0",
"@capacitor/status-bar": "1.0.2",
"@ionic-native/globalization": "^5.36.0",
"@ionic/angular": "^5.5.2",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"assert": "^2.0.0",
"cordova": "^10.0.0",
"fs": "0.0.1-security",
"fs.promises": "^0.1.2",
"glob": "^7.2.0",
"globby": "^12.0.2",
"ionicons": "^5.5.2",
"json-query": "^2.2.2",
"list-files-in-dir": "^0.1.5",
"minimatch": "^3.0.4",
"path": "^0.12.7",
"rxjs": "~6.6.0",
"sax": "^1.2.4",
"stream-browserify": "^3.0.0",
"timers": "^0.1.1",
"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.1.1",
"@ionic/angular-toolkit": "^4.0.0",
"@ionic/lab": "3.2.10",
"@nrwl/cypress": "^13.1.4",
"@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": "^8.7.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.4",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.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.6",
"prettier": "^2.4.1",
"ts-node": "~8.3.0",
"typescript": "~4.2.4"
},
"description": "Ballot Markup Application",
"browser": {
"fs": false,
"os": false,
"path": false
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{js,ts,css,scss,md}": "prettier --write"
}
}