-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.23 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.23 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
100
101
102
103
104
105
106
107
108
{
"name": "portfolio",
"version": "2.3.3",
"description": "This is the source code of my website www.timondev.com.",
"homepage": "https://www.timondev.com",
"author": "Timon Fiedler",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Timon-D3v/website.git"
},
"bugs": {
"url": "https://github.com/Timon-D3v/website/issues"
},
"scripts": {
"ng": "ng",
"start": "node dist/server/server.mjs",
"build": "ng build --verbose",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr:portfolio": "node dist/portfolio/server/server.mjs",
"dev": "ng serve --port=8080 --verbose",
"format": "npx prettier --write \"src/**/*.{ts,html,scss}\"",
"fmt": "npm run format",
"prettier": "npx prettier",
"docker:build": "docker build . -t portfolio",
"docker:run": "docker run --rm --name portfolio -p 8080:8080 --env-file ./docker.env portfolio",
"docker:stop": "docker stop portfolio",
"docker:tag": "docker tag portfolio timond3v/portfolio",
"docker:push": "docker push timond3v/portfolio",
"docker:buildx": "docker buildx build --platform linux/arm64,linux/amd64 -t portfolio",
"docker:buildx:push": "docker buildx build --platform linux/arm64,linux/amd64 -t timond3v/portfolio:latest --push ."
},
"dependencies": {
"@angular/animations": "^21.1.5",
"@angular/common": "^21.1.5",
"@angular/compiler": "^21.1.5",
"@angular/core": "^21.1.5",
"@angular/forms": "^21.1.5",
"@angular/platform-browser": "^21.1.5",
"@angular/platform-browser-dynamic": "^21.1.5",
"@angular/platform-server": "^21.1.5",
"@angular/router": "^21.1.5",
"@angular/ssr": "^21.1.5",
"bcryptjs": "^3.0.2",
"cors": "^2.8.6",
"crypto": "^1.0.1",
"delivapi-client": "^1.2.0",
"dotenv": "^17.3.1",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"express-session": "^1.19.0",
"filesize": "^11.0.13",
"fs": "^0.0.1-security",
"gsap": "^3.12.7",
"multer": "^2.0.1",
"mysql2": "^3.18.0",
"node-mailjet": "^6.0.7",
"os": "^0.1.2",
"path": "^0.12.7",
"poisson-disk-sampling": "^2.3.1",
"rxjs": "~7.8.2",
"three": "0.182.0",
"timonjs": "^2.1.0",
"tslib": "^2.8.1",
"zone.js": "^0.16.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.1.5",
"@angular/cli": "^21.1.5",
"@angular/compiler-cli": "^21.1.5",
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.1",
"@types/jasmine": "~6.0.0",
"@types/multer": "^2.0.0",
"@types/node": "^25.0.3",
"@types/poisson-disk-sampling": "^2.2.4",
"@types/three": "^0.183.1",
"eslint": "^10.0.1",
"jasmine-core": "^6.1.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.2.0",
"prettier": "^3.8.1",
"typescript": "^5.8.3"
},
"keywords": [
"nodejs",
"javascript",
"typescript",
"angular",
"portfolio",
"website",
"threejs",
"express",
"cloud",
"sql",
"scss",
"prettier",
"expressjs",
"gsap",
"full-stack",
"poisson-disk-sampling",
"gsap-scrolltrigger"
]
}