-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.38 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
{
"name": "osrs-tracker-web",
"version": "0.0.0",
"private": true,
"description": "Keep track of everything that matters in Old School Runescape. Track the latest news, item prices, hiscores, and XP gains.",
"keywords": [
"oldschool",
"runescape",
"osrs",
"hiscores",
"items",
"price",
"xp",
"tracker"
],
"repository": {
"type": "git",
"url": "github:osrs-tracker/osrs-tracker-web"
},
"license": "Apache-2.0",
"author": {
"name": "Freek Mencke",
"email": "[email protected]",
"url": "https://github.com/osrs-tracker/osrs-tracker-web"
},
"type": "module",
"scripts": {
"postinstall": "npm install --prefix ./scripts",
"build": "NG_BUILD_OPTIMIZE_CHUNKS=1 ng build --configuration production",
"predeploy": "npm run sitemap && npm run build",
"deploy": "npm run deploy:app && npm run deploy:assets",
"deploy:app": "aws s3 sync --delete --exclude 'assets/*' --exclude '*.js' --exclude '*.css' ./dist/osrs-tracker-web s3://osrs-tracker.freekmencke.com",
"deploy:assets": "aws s3 sync --delete --size-only ./dist/osrs-tracker-web s3://osrs-tracker.freekmencke.com",
"sitemap": "npm run sitemap:items && npm run sitemap:index",
"sitemap:index": "node ./scripts/sitemap/sitemap-index.js",
"sitemap:items": "node ./scripts/sitemap/sitemap-items.js",
"lint": "ng lint",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"start": "ng serve --open",
"test": "ng test",
"watch": "ng build --watch --configuration development"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "./.prettierrc.json",
"dependencies": {
"@angular/cdk": "^19.0.3",
"@angular/common": "^19.0.4",
"@angular/compiler": "^19.0.4",
"@angular/core": "^19.0.4",
"@angular/forms": "^19.0.4",
"@angular/platform-browser": "^19.0.4",
"@angular/platform-browser-dynamic": "^19.0.4",
"@angular/router": "^19.0.4",
"@angular/service-worker": "^19.0.4",
"@osrs-tracker/hiscores": "^0.5.0",
"chart.js": "^4.4.6",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-annotation": "^3.1.0",
"chartjs-plugin-zoom": "^2.2.0",
"date-fns": "^4.1.0",
"marked": "^15.0.3",
"rxjs": "~7.8.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.5",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "~19.0.5",
"@angular/compiler-cli": "^19.0.4",
"@eslint/js": "9.14.0",
"@osrs-tracker/models": "^0.4.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/gtag.js": "^0.0.20",
"@types/jest": "^29.5.14",
"@typescript-eslint/types": "^8.18.0",
"@typescript-eslint/utils": "^8.18.0",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"tailwindcss": "^3.4.16",
"typescript": "^5.6.3",
"typescript-eslint": "8.8.0"
}
}