-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 2.3 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
{
"name": "view-component",
"version": "1.0.0",
"type": "module",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run format && npm run lint && ng build --configuration production --verbose --output-hashing none",
"watch": "ng build --watch --configuration development",
"test": "npx cypress info && npx cypress run --component",
"ghpage": "angular-cli-ghpages --dir=dist/view-component/browser",
"lint": "ng lint",
"cypress": "export CYPRESS_REMOTE_DEBUGGING_PORT=9222; npx cypress open",
"format": "npx prettier --write .",
"upgrade": "ng update @angular/cli @angular/core angular-cli-ghpages @angular-devkit/build-angular @angular/elements @angular-eslint/eslint-plugin @angular-eslint/eslint-plugin-template @angular-eslint/schematics --force && npm update && npm audit fix --force",
"bundle-size": "ng build && esbuild-visualizer --metadata ./dist/view-component/stats.json"
},
"private": true,
"dependencies": {
"@angular/common": "18.2.2",
"@angular/compiler": "18.2.2",
"@angular/core": "18.2.2",
"@angular/elements": "18.2.2",
"@angular/platform-browser": "18.2.2",
"@angular/platform-browser-dynamic": "18.2.2",
"ngx-logger": "^5.0.12",
"ol": "^9.2.4",
"ol-mapbox-style": "^12.3.5",
"proj4": "^2.11.0",
"rxjs": "^7.8.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.2",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "~18.2.2",
"@angular/compiler-cli": "18.2.2",
"@types/jest": "^29.5.12",
"@types/proj4": "2.5.5",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"angular-cli-ghpages": "2.0.1",
"axe-core": "^4.9.1",
"cypress": "^13.13.0",
"cypress-axe": "^1.5.0",
"cypress-network-idle": "^1.14.2",
"cypress-vite": "^1.5.0",
"esbuild-visualizer": "^0.6.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.3.1",
"prettier-eslint": "16.3.0",
"typescript": "^5.4.5",
"webpack-bundle-analyzer": "^4.10.1"
}
}