-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "slowquery",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "oxlint",
"preview": "vite preview",
"test": "vitest run",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"serve": "node scripts/serve.mjs",
"smoke": "node scripts/smoke.mjs"
},
"dependencies": {
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.1",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.9.0",
"oxlint": "^1.75.0",
"playwright": "^1.62.1",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.2",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.0",
"vitest": "^4.1.10"
},
"description": "Paste a Postgres EXPLAIN ANALYZE plan, get a plain-English diagnosis of what is slow and why.",
"license": "MIT"
}