-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "site",
"description": "My personal website",
"version": "0.1.0",
"license": "GPL-3.0-or-later",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nipsysdev/site"
},
"homepage": "https://nipsys.dev/",
"author": "Xavier Saliniere <bonjour@xaviers.sh>",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9"
},
"scripts": {
"dev": "next dev --turbopack",
"dev-legacy": "next dev",
"build": "next build",
"export": "next build",
"analyze": "ANALYZE=true next build",
"serve": "npx serve@latest out",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest run --watch",
"lint": "biome check .",
"lint:fix": "biome check . --fix",
"format": "biome format --write .",
"postinstall": "lefthook install"
},
"dependencies": {
"@nipsysdev/lsd-react": "0.2.0-beta.4-dev1",
"next": "^15.5.2",
"next-intl": "^4.3.5",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"tailwindcss": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@next/bundle-analyzer": "^15.5.2",
"@tailwindcss/postcss": "^4.1.12",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "3.2.4",
"jsdom": "^26.1.0",
"lefthook": "^1.12.3",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}