-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
69
{
"name": "trysquare",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "A local code reviewer that reads a git branch carefully and refuses to report a finding it cannot prove.",
"license": "MIT",
"author": "Poolchaos",
"repository": {
"type": "git",
"url": "git+https://github.com/Poolchaos/Trysquare.git"
},
"bugs": {
"url": "https://github.com/Poolchaos/Trysquare/issues"
},
"homepage": "https://github.com/Poolchaos/Trysquare#readme",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"demo:fixture": "tsx scripts/demo-fixture.ts"
},
"overrides": {
"postcss": "^8.5.25",
"sharp": "^0.35.3",
"@esbuild-kit/core-utils": {
"esbuild": "^0.25.12"
}
},
"dependencies": {
"better-sqlite3": "^13.0.2",
"drizzle-orm": "^0.45.2",
"next": "^16.2.12",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"ulid": "^3.0.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.62.0",
"@tailwindcss/postcss": "^4.3.3",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26.1.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"postcss": "^8.5.25",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}