-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.26 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "engram",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "zx ./local-env.mjs",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky",
"seed": "zx ./scripts/seed.mjs",
"storybook": "STORYBOOK_DISABLE_TELEMETRY=true storybook dev -p 6006",
"build-storybook": "STORYBOOK_DISABLE_TELEMETRY=true storybook build"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.40",
"@ai-sdk/react": "^3.0.151",
"@tanstack/react-query": "^5.96.2",
"@trpc/client": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"ai": "^6.0.149",
"better-sqlite3": "^12.9.0",
"clsx": "^2.1.1",
"dotenv": "^17.4.1",
"drizzle-orm": "^0.45.2",
"jszip": "^3.10.1",
"next": "16.2.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"sqlite-vec": "^0.1.9",
"superjson": "^2.2.6",
"zod": "^4.3.6",
"zx": "^8.8.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@storybook/addon-a11y": "^10.3.4",
"@storybook/addon-docs": "^10.3.4",
"@storybook/addon-vitest": "^10.3.4",
"@storybook/nextjs-vite": "^10.3.4",
"@tailwindcss/postcss": "^4",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/jszip": "^3.4.1",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^10.3.4",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"playwright": "^1.59.1",
"prettier": "^3.8.1",
"storybook": "^10.3.5",
"tailwindcss": "^4",
"typescript": "^6",
"vite": "^8.0.5",
"vitest": "^4.1.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": [
"prettier --write",
"eslint --fix"
]
}
}