-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.5 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
{
"name": "d2-checklist",
"version": "32.0.2",
"manifest": "244019.26.05.29.1640-4-bnet.65312-r2",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"stage-prod-keys": "node stage-prod-config.js",
"stage-beta-keys": "node stage-beta-config.js",
"docker-start": "ng serve --host 0.0.0.0 --ssl",
"buildStats": "ng build --configuration=production --stats-json",
"build": "ng build",
"test": "ng test",
"test:ci": "ng test --no-watch --browsers=ChromeHeadless --code-coverage",
"lint": "ng lint",
"build:prod": "ng build --configuration production",
"clean": "rm -rf ./dist/ ./tools/manifest/.cache/ && find src/assets -name 'destiny2-*.json' -delete",
"server": "cd dist && http-server -S -p 4200 -C ../dev-certs/localhost.crt -K ../dev-certs/localhost.key",
"prod": "npm run clean && npm run build:prod && npm run server",
"manifest:fetch": "npx ts-node --project tools/manifest/tsconfig.json tools/manifest/index.ts",
"manifest:force": "MANIFEST_FORCE=1 npx ts-node --project tools/manifest/tsconfig.json tools/manifest/index.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.20",
"@angular/cdk": "^19.2.19",
"@angular/common": "^19.2.20",
"@angular/compiler": "^19.2.20",
"@angular/core": "^19.2.20",
"@angular/forms": "^19.2.20",
"@angular/material": "^19.2.19",
"@angular/platform-browser": "^19.2.20",
"@angular/platform-browser-dynamic": "^19.2.20",
"@angular/platform-server": "^19.2.20",
"@angular/router": "^19.2.20",
"@angular/service-worker": "^19.2.20",
"@d2api/date": "3.0.0",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/pro-duotone-svg-icons": "file:vendor-packages/fortawesome-pro-duotone-svg-icons-7.2.0.tgz",
"@fortawesome/pro-light-svg-icons": "file:vendor-packages/fortawesome-pro-light-svg-icons-7.2.0.tgz",
"@fortawesome/pro-regular-svg-icons": "file:vendor-packages/fortawesome-pro-regular-svg-icons-7.2.0.tgz",
"@fortawesome/pro-solid-svg-icons": "file:vendor-packages/fortawesome-pro-solid-svg-icons-7.2.0.tgz",
"chart.js": "^4.1.2",
"date-fns": "2.29.3",
"idb-keyval": "6.2.0",
"lz-string": "1.4.4",
"ng2-charts": "^4.1.1",
"ngx-clipboard": "^15.0.1",
"rxjs": "^7.8.2",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.23",
"@angular-eslint/builder": "^19.8.1",
"@angular-eslint/eslint-plugin": "^19.8.1",
"@angular-eslint/eslint-plugin-template": "^19.8.1",
"@angular-eslint/schematics": "^19.8.1",
"@angular-eslint/template-parser": "^19.8.1",
"@angular/cli": "^19.2.23",
"@angular/compiler-cli": "^19.2.20",
"@angular/language-service": "^19.2.20",
"@destinyitemmanager/dim-api-types": "1.23.0",
"@types/jasmine": "~4.3.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"bungie-api-ts": "4.21.0",
"eslint": "^8.57.0",
"jasmine-core": "~4.5.0",
"jsonc-parser": "^3.3.1",
"jszip": "3.10.1",
"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",
"karma-spec-reporter": "^0.0.36",
"sql.js": "^1.14.1",
"ts-node": "10.9.1",
"typescript": "5.8.3"
}
}