-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "codepiece-hackathon",
"private": true,
"packageManager": "bun@1.3.11",
"scripts": {
"dev": "next dev -p 4000",
"dev:fresh": "rm -rf .next && next dev -p 4000",
"build": "next build",
"start": "next start -p 4000",
"scan": "bun run src/scan/cli.ts",
"db:clear": "rm -f data/codepiece.db data/codepiece.db-wal data/codepiece.db-shm data/scan-memory.json",
"seed:samples": "REPO_LABEL=TheAlgorithms/TypeScript TARGET_REPO=./samples/the-algorithms-typescript bun run src/scan/cli.ts -- --force",
"test": "bun test",
"test:scan": "bun test src/scan src/lib",
"test:web": "bun test tests/web",
"db:push": "drizzle-kit push",
"db:stats": "bun run src/db/db-stats.ts"
},
"dependencies": {
"better-sqlite3": "^11.8.1",
"drizzle-orm": "^0.38.3",
"next": "^16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"ts-morph": "^25.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.30.1",
"typescript": "^5.7.2"
}
}