-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "app",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"verify": "npm run format:check && npm run typecheck && npm run lint && npm run test"
},
"dependencies": {
"@base-ui/react": "^1.8.0",
"better-sqlite3": "^13.0.3",
"class-variance-authority": "^0.7.1",
"cn": "^0.2.5",
"drizzle-orm": "^0.45.2",
"gray-matter": "^4.0.3",
"lucide-react": "^1.41.0",
"next": "16.3.4",
"openai": "^7.10.0",
"postgres": "^3.4.9",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.21.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.1.1",
"axe-core": "4.13.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.3.4",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^5.0.0"
},
"packageManager": "bun@1.3.14",
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}