-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.37 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
{
"name": "chrisbarr.me",
"version": "1.0.0",
"description": "Chris Barr's Website",
"author": "Chris Barr",
"license": "none",
"homepage": "https://chrisbarr.me",
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisMBarr/chrisbarr.me.git"
},
"bugs": {
"url": "https://github.com/ChrisMBarr/chrisbarr.me/issues"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"lint": "ng lint --fix=true",
"update": "ncu -u",
"dev:ssr": "ng run chrisbarr.me:serve-ssr",
"serve:ssr": "node dist/chrisbarr.me/server/main.js",
"build:ssr": "ng build && ng run chrisbarr.me:server",
"build:routes": "node route-builder.js",
"prerender": "npm run build:routes && ng run chrisbarr.me:prerender --routes-file routes.txt",
"gh-deploy": "npm run lint && npm run prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.10",
"@angular/cdk": "^18.2.11",
"@angular/common": "^18.2.10",
"@angular/compiler": "^18.2.10",
"@angular/core": "^18.2.10",
"@angular/forms": "^18.2.10",
"@angular/platform-browser": "^18.2.10",
"@angular/platform-browser-dynamic": "^18.2.10",
"@angular/platform-server": "^18.2.10",
"@angular/router": "^18.2.10",
"@angular/ssr": "^18.2.11",
"express": "^4.21.1",
"hammerjs": "^2.0.8",
"ng-gallery": "^12.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"zone.js": "^0.14.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1802.11",
"@angular-devkit/build-angular": "^18.2.11",
"@angular-eslint/builder": "18.4.0",
"@angular-eslint/eslint-plugin": "18.4.0",
"@angular-eslint/eslint-plugin-template": "18.4.0",
"@angular-eslint/schematics": "18.4.0",
"@angular-eslint/template-parser": "18.4.0",
"@angular/cli": "~18.2.11",
"@angular/compiler-cli": "^18.2.10",
"@types/express": "^5.0.0",
"@types/jasmine": "~5.1.4",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"bootstrap": "^5.3.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.3.3",
"typescript": "~5.5.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}