This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.52 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
{
"name": "IATI-Validator-Web",
"version": "2.4.3",
"license": "AGPL-3.0-or-later",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:dev": "ng build",
"build:prod": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.1.4",
"@angular/common": "^12.1.4",
"@angular/compiler": "^12.1.4",
"@angular/core": "^12.1.4",
"@angular/forms": "^12.1.4",
"@angular/http": "^7.2.16",
"@angular/localize": "^12.1.4",
"@angular/platform-browser": "^12.1.4",
"@angular/platform-browser-dynamic": "^12.1.4",
"@angular/router": "^12.1.4",
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
"ajv": "^8.11.2",
"angular-gtag": "^1.0.4",
"bootstrap": "^4.6.2",
"core-js": "^3.26.1",
"jquery": "^3.6.1",
"lodash": "^4.17.21",
"ngx-cookie-service": "^12.0.3",
"popper.js": "^1.16.1",
"rxjs": "^6.6.7",
"rxjs-compat": "^6.6.7",
"tslib": "^2.4.1",
"uuid": "^9.0.0",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.12",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "12.7.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "^12.2.14",
"@angular/compiler-cli": "^12.1.4",
"@angular/language-service": "^15.0.3",
"@types/jasmine": "~4.3.1",
"@types/jasminewd2": "^2.0.10",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"angular-ide": "^0.9.77",
"codelyzer": "^6.0.2",
"eslint": "^7.32.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "^39.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.2",
"jasmine-core": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"lint-staged": "^13.1.0",
"protractor": "^7.0.0",
"sass": "^1.56.2",
"ts-node": "^10.9.1",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint"
]
},
"browserslist": [
"defaults",
"not IE 11"
]
}