-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
{
"name": "querycraft",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:load": "node scripts/test-db/load-tests.mjs",
"test-db:migrate": "node scripts/test-db/migrate.mjs up",
"test-db:migrate:status": "node scripts/test-db/migrate.mjs status",
"test-db:migrate:down": "node scripts/test-db/migrate.mjs down",
"test-db:migrate:down:all": "node scripts/test-db/migrate.mjs down --all"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.17",
"@faker-js/faker": "^10.3.0",
"@xyflow/react": "^12.10.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"codemirror": "^6.0.2",
"framer-motion": "^12.0.0",
"html-to-image": "^1.11.13",
"lucide-react": "^0.475.0",
"next": "16.2.3",
"pg": "^8.20.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"sql.js": "^1.14.1",
"tailwind-merge": "^3.0.0",
"zod": "^3.24.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"prettier": "^3.5.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^3.0.0"
}
}