forked from jaguarliuu/Formative
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.93 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.93 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
82
83
84
85
86
87
88
89
90
91
{
"name": "formative",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"diagnostic": "tsx scripts/diagnostic.ts",
"lint": "eslint src --config eslint.config.mjs",
"lint:fix": "eslint src --config eslint.config.mjs --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"check": "pnpm type-check && pnpm lint && pnpm format:check",
"ops": "node scripts/ops/index.js",
"ops:start": "node scripts/ops/start.js",
"ops:clean": "node scripts/ops/clean.js",
"ops:stop": "node scripts/ops/stop.js",
"ops:reinstall": "node scripts/ops/reinstall.js",
"ops:health": "node scripts/ops/health.js",
"test": "vitest",
"test:unit": "vitest --run",
"test:integration": "vitest --run --config vitest.config.ts tests/integration",
"test:coverage": "vitest --run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/lib/storage/migrator.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/db/seed.ts"
},
"dependencies": {
"@langchain/community": "^1.1.3",
"@langchain/core": "^1.1.12",
"@langchain/langgraph": "^1.0.14",
"@langchain/openai": "^1.2.1",
"@langchain/redis": "^1.0.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"ioredis": "^5.9.1",
"langchain": "^1.2.7",
"lucide-react": "^0.562.0",
"mermaid": "^11.12.2",
"next": "^16.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"sql.js": "^1.13.0",
"tailwind-merge": "^3.4.0",
"uuid": "^13.0.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@libsql/client": "^0.17.0",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.8",
"eslint": "^9.18.0",
"eslint-config-next": "^16.1.1",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.1.0",
"msw": "^2.12.7",
"postcss": "^8.4.49",
"prettier": "^3.7.4",
"readline-sync": "^1.4.10",
"tailwindcss": "^4.1.18",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}