-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.41 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.41 KB
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
{
"name": "angular-app",
"version": "0.0.0",
"scripts": {
"start": "ng serve -o",
"build": "ng build",
"build:stats": "ng build --stats-json",
"watch": "ng build --watch --configuration development",
"test": "ng test --watch=false --browsers=ChromeHeadless --code-coverage --progress",
"test:watch": "ng test",
"lint": "run-p -c eslint prettier stylelint",
"lint:fix": "run-p -c eslint:fix prettier:fix stylelint:fix",
"eslint": "ng lint",
"eslint:fix": "ng lint --fix",
"prettier": "prettier -c src",
"prettier:fix": "npm run prettier -- -w",
"stylelint": "stylelint src/**/*.css",
"stylelint:fix": "npm run stylelint -- --fix",
"clean": "ng cache clean"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.1.0",
"@angular/common": "^20.1.0",
"@angular/compiler": "^20.1.0",
"@angular/core": "^20.1.0",
"@angular/forms": "^20.1.0",
"@angular/platform-browser": "^20.1.0",
"@angular/platform-browser-dynamic": "^20.1.0",
"@angular/router": "^20.1.0",
"@mapbox/mapbox-gl-draw": "^1.5.0",
"@mapbox/mapbox-gl-geocoder": "^5.0.3",
"ag-grid-angular": "^34.0.1",
"json-as-xlsx": "^2.5.6",
"lz-string": "^1.5.0",
"mapbox-gl": "^3.13.0",
"papaparse": "^5.5.3",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"uuid": "^13.0.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular/build": "^21.2.8",
"@angular/cli": "^21.2.8",
"@angular/compiler-cli": "^21.2.10",
"@types/jasmine": "~6.0.0",
"@types/mapbox__mapbox-gl-draw": "^1.4.9",
"@types/mapbox__mapbox-gl-geocoder": "^5.0.0",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^25.6.0",
"@types/papaparse": "^5.3.16",
"@types/uuid": "^11.0.0",
"angular-eslint": "21.3.1",
"autoprefixer": "^10.4.21",
"eslint": "^10.2.1",
"jasmine-core": "~6.2.0",
"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.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"stylelint": "^17.9.1",
"stylelint-config-standard": "^40.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "8.59.1",
"vite": "^8.0.10",
"xlsx": "^0.18.5"
}
}