-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 3.57 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
{
"name": "helpful-information",
"homepage": "https://helpfulinformation.redcross.nl/",
"scripts": {
"prepare": "husky",
"setup": "cp -i .env.example .env && npm run prepare",
"start": "ng serve",
"set-env-variables": "node ./_set-env-variables.js",
"prebuild": "npm run set-env-variables",
"build": "ng build",
"build:production": "npm run build -- --configuration=production",
"preserve:production": "cp www/index.html www/404.html",
"serve:production": "npx http-server ./www/ -c-1",
"start:production": "npm run build:production && npm run serve:production",
"pretest": "npm run lint",
"test": "ng test --configuration=ci",
"test:watch": "ng test --configuration=development",
"serve:local-data": "npx http-server ./data/ --port=3001 --cors='*' -i=false -c=-1 --ext=json",
"upgrade:angular": "ng update @angular/core @angular/cli @angular-eslint/schematics --create-commits",
"lint": "npm run lint:syntax && npm run lint:code",
"lint:code": "ng lint",
"lint:syntax": "prettier --check \"**/*.{md,yml,json,scss}\"",
"fix:code": "npm run lint:code -- --fix",
"fix:syntax": "npm run lint:syntax -- --write",
"fix": "npm run fix:code && npm run fix:syntax"
},
"private": true,
"engines": {
"node": ">=18",
"npm": ">=8"
},
"dependencies": {
"@angular/common": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/forms": "^18.2.8",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.8",
"@angular/router": "^18.2.8",
"@angular/service-worker": "^18.2.8",
"@ionic/angular": "^8.3.2",
"@ionic/cli": "^7.2.0",
"@microsoft/applicationinsights-web": "^3.3.3",
"marked": "^12.0.2",
"ngx-markdown": "^18.1.0",
"rxjs": "^7.5.0",
"tslib": "^2.8.0",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.8",
"@angular-eslint/builder": "^18.3.1",
"@angular-eslint/eslint-plugin": "^18.3.1",
"@angular-eslint/eslint-plugin-template": "^18.3.1",
"@angular-eslint/schematics": "^18.3.1",
"@angular-eslint/template-parser": "^18.3.1",
"@angular/cli": "^18.2.8",
"@angular/compiler": "^18.2.8",
"@angular/compiler-cli": "^18.2.8",
"@angular/language-service": "^18.2.8",
"@ionic/angular-toolkit": "^12.1.1",
"@microsoft/applicationinsights-debugplugin-js": "^3.3.3",
"@types/eslint": "^8.56.12",
"@types/jasmine": "^5.1.4",
"@types/node": "^20.16.11",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"confusing-browser-globals": "^1.0.11",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"http-server": "^14.1.0",
"husky": "^9.1.6",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-spec-reporter": "^0.0.36",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"typescript": "~5.4.5"
},
"lint-staged": {
"*.{md,yml,json,scss}": "prettier --write",
"*.{js,ts,html}": "eslint --fix"
}
}