-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 983 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 983 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
40
41
42
43
{
"name": "base-component",
"private": true,
"scripts": {
"aio": "esrun aio/index.ts",
"dev": "next dev -p 4242 --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"dotenv": "^16.4.5",
"eta": "^3.5.0",
"next": "16.0.1",
"next-yak": "^8.0.1",
"octokit": "^4.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.14.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.1.1",
"esrun": "^3.2.28",
"jsdom": "^23.0.1",
"typescript": "^5.5.4",
"vitest": "^1.0.1"
},
"volta": {
"node": "24.11.0"
}
}