-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.64 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
{
"name": "token-atm-spa",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:cli": "ng test --no-watch --no-progress",
"format": "prettier -c .",
"format:fix": "prettier -w .",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"add-change": "git update-index --again",
"before-commit": "run-s format:fix lint:fix add-change test:cli",
"check": "run-s format lint test:cli",
"schematics-build": "cd custom-schematics && npm run build",
"schematics-setup": "cd custom-schematics && npm i && npm run build && cd .. && npm link ./custom-schematics",
"postinstall": "npm run schematics-setup",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.11",
"@angular/cdk": "^17.3.10",
"@angular/common": "^17.3.11",
"@angular/compiler": "^17.3.11",
"@angular/core": "^17.3.11",
"@angular/forms": "^17.3.11",
"@angular/localize": "^17.3.11",
"@angular/material": "~17.3.10",
"@angular/platform-browser": "^17.3.11",
"@angular/platform-browser-dynamic": "^17.3.11",
"@angular/router": "^17.3.11",
"@popperjs/core": "^2.11.6",
"ag-grid-angular": "^32.2.0",
"ag-grid-community": "^32.2.0",
"axios": "^1.3.5",
"bootstrap": "^5.2.3",
"bootstrap-icons": "^1.10.5",
"camelcase-keys": "^8.0.2",
"compress-json": "^2.1.2",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.1",
"decamelize-keys": "^2.0.1",
"flatted": "^3.2.7",
"fp-ts": "^2.16.1",
"html-dom-parser": "^3.1.7",
"io-ts": "^2.2.20",
"js-base64": "^3.7.5",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"ngx-bootstrap": "^12.0.0",
"ngx-mat-select-search": "^7.0.4",
"papaparse": "^5.4.1",
"rxjs": "~7.8.0",
"sanitize-filename": "^1.6.3",
"tslib": "^2.3.0",
"unzipit": "^1.4.3",
"uuid": "^9.0.0",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.11",
"@angular-eslint/builder": "17.5.2",
"@angular-eslint/eslint-plugin": "17.5.2",
"@angular-eslint/eslint-plugin-template": "17.5.2",
"@angular-eslint/schematics": "17.5.2",
"@angular-eslint/template-parser": "17.5.2",
"@angular/cli": "~17.3.11",
"@angular/compiler-cli": "^17.3.11",
"@types/jasmine": "~4.3.0",
"@types/lodash": "^4.14.199",
"@types/papaparse": "^5.3.7",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"typescript": "~5.4.5"
},
"overrides": {
"semver": "^7.5.3",
"webpack-dev-middleware": "^6.1.2",
"decamelize-keys": {
"type-fest": "^4.20.1"
}
}
}