-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) 路 1.6 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) 路 1.6 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
{
"name": "nowakkamil.github.io",
"version": "2.0.0",
"private": true,
"description": "Interactive 3D developer portfolio built with Three.js, GSAP, TypeScript, and Vite.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build && npm run seo:check",
"email:build": "node scripts/build-email.mjs",
"preview": "vite preview",
"images:generate": "node scripts/generate-responsive-project-images.mjs",
"images:check": "node scripts/check-responsive-project-images.mjs",
"seo:check": "node scripts/check-seo-build.mjs",
"typecheck": "tsc --noEmit",
"test": "node --test tests/*.test.ts",
"lint": "oxlint && stylelint \"src/**/*.scss\"",
"lint:fix": "oxlint --fix && stylelint \"src/**/*.scss\" --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run deadcode && npm run images:check",
"deadcode": "knip"
},
"dependencies": {
"gsap": "3.15.0",
"resend": "6.18.1",
"three": "0.184.0",
"zod": "4.4.3"
},
"devDependencies": {
"@types/three": "0.184.1",
"knip": "6.29.0",
"lil-gui": "0.21.0",
"mjml": "5.4.0",
"oxfmt": "0.60.0",
"oxlint": "1.75.0",
"sass": "1.100.0",
"sharp": "0.35.3",
"stylelint": "17.14.1",
"stylelint-config-standard-scss": "17.0.0",
"typescript": "7.0.2",
"vite": "8.2.1",
"vite-plugin-glsl": "1.6.0"
}
}