-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 910 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 910 Bytes
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
{
"name": "nuts3745-dev",
"version": "0.2.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@vercel/analytics": "^1.5.0",
"@vitejs/plugin-react": "^5.0.4",
"happy-dom": "^19.0.2",
"next": "^15.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.6.2",
"@types/react": "^19.2.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.36.0",
"eslint-config-next": "^15.5.4",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vitest": "^3.2.4"
}
}