-
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) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "agent-friendly-code",
"version": "0.5.0",
"private": true,
"license": "MIT",
"author": "Himanshu Singh (https://github.com/hsnice16)",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start -p 3000",
"score": "tsx scripts/score.ts score",
"seed": "tsx scripts/seed.ts",
"seed-packages": "tsx scripts/seed-packages.ts",
"init-db": "tsx scripts/init-db.ts",
"prepare-hooks": "lefthook install",
"test": "node --import tsx --test 'tests/**/*.test.ts'"
},
"dependencies": {
"@phosphor-icons/react": "2.1.10",
"better-sqlite3": "12.9.0",
"ignore": "7.0.5",
"next": "16.2.4",
"react": "19.2.5",
"react-dom": "19.2.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@tailwindcss/postcss": "4.2.4",
"@types/better-sqlite3": "7.6.13",
"@types/bun": "1.3.12",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"lefthook": "2.1.6",
"postcss": "8.5.10",
"tailwindcss": "4.2.4",
"tsx": "4.21.0",
"typescript": "6.0.3"
}
}