-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.83 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
{
"name": "folio-ip",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3100",
"dev:restart": "lsof -ti:3100 | xargs kill -9 2>/dev/null; next dev --port 3100",
"mcp:playwright:preflight": "bash ./scripts/playwright-mcp-preflight.sh",
"build": "next build",
"start": "next start --port 3100",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings 0"
]
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.12.1",
"@codemirror/lint": "^6.9.4",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.14",
"@dagrejs/dagre": "^2.0.4",
"@plexui/ui": "^0.7.0",
"@tanstack/react-query": "^5",
"@tanstack/react-table": "^8",
"@uiw/codemirror-theme-github": "^4.25.4",
"@xyflow/react": "^12.10.0",
"elkjs": "^0.11.0",
"lucide-react": "^0.400",
"luxon": "^3",
"next": "16.1.6",
"next-themes": "^0.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/luxon": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"happy-dom": "^20.6.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
}
}