-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.53 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.53 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "public",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"buildProd": "angular-build-info && ng build --configuration production && npm run sentry:sourcemaps",
"buildStaging": "angular-build-info && ng build --configuration staging --stats-json && npm run sentry:sourcemaps",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"prepare": "husky",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org kwongtn --project javascript-angular ./dist && sentry-cli sourcemaps upload --org kwongtn --project javascript-angular ./dist"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{json,css,scss,html,md}": [
"prettier --write"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.13",
"@angular/common": "^18.2.13",
"@angular/compiler": "^18.2.13",
"@angular/core": "^18.2.13",
"@angular/fire": "^18.0.1",
"@angular/forms": "^18.2.13",
"@angular/platform-browser": "^18.2.13",
"@angular/platform-browser-dynamic": "^18.2.13",
"@angular/router": "^18.2.13",
"@antv/g2": "^5.1.6",
"@antv/g2plot": "^2.4.23",
"@antv/l7": "^2.21.10",
"@antv/l7-maps": "^2.21.10",
"@antv/scale": "^0.3.11",
"@apollo/client": "^3.8.4",
"@ctrl/tinycolor": "^4.1.0",
"@devui-design/icons": "^1.3.0",
"@sentry/angular": "^8.47.0",
"@sentry/cli": "^2.23.1",
"@sentry/replay": "^7.24.2",
"@sentry/tracing": "^7.7.0",
"@supercharge/promise-pool": "^3.0.0",
"angular-build-info": "^2.0.1",
"apollo-angular": "^8.0.0",
"csvtojson": "^2.0.10",
"emoji-toolkit": "^9.0.0",
"firebase": "^10.0.0",
"first-input-delay": "^0.1.3",
"graphql": "^16.8.1",
"gtfs": "^4.10.4",
"gtfs-realtime-bindings": "^1.1.1",
"jszip": "^3.10.1",
"marked": "^9.0.0",
"mermaid": "^11.0.0",
"ng-devui": "^18.0.0",
"ng-in-viewport": "^16.0.0",
"ng-recaptcha-2": "^14.0.0",
"ng-zorro-antd": "^18.2.1",
"ngx-markdown": "^18.0.0",
"rxjs": "^6.5.3 || ^7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^18.0.0",
"@angular-devkit/build-angular": "^18.2.12",
"@angular/cli": "^18.2.12",
"@angular/compiler-cli": "^18.2.13",
"@codecov/webpack-plugin": "^1.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@sentry/webpack-plugin": "^2.5.0",
"@types/geojson": "^7946.0.14",
"@types/jasmine": "~5.1.4",
"@types/mapbox-gl": "^3.1.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-json": "^4.0.0",
"globals": "^15.14.0",
"gtfs-types": "^4.0.0",
"husky": "^9.0.0",
"jasmine-core": "~5.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",
"lint-staged": "^15.0.3",
"prettier": "^3.0.0",
"typescript": ">=5.4.0 <5.6.0",
"webpack-bundle-analyzer": "^4.10.2"
}
}