-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
{
"name": "approvals-ui",
"version": "0.1.0",
"private": true,
"prettier": "@dylanmerigaud/config/prettier",
"scripts": {
"dev": "next dev",
"build": "shadcn build && next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"knip": "knip",
"test": "vitest run",
"validate": "pnpm run lint && pnpm run format:check && pnpm run typecheck && pnpm run knip",
"registry:build": "shadcn build",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@xyflow/react": "^12.11.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"lucide-react": "^1.23.0",
"next": "16.2.10",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-flow-auto-layout": "^0.2.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@dylanmerigaud/config": "^0.3.0",
"@tailwindcss/postcss": "^4",
"@types/dagre": "^0.7.54",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^10.7.0",
"husky": "^9.1.7",
"knip": "^6.26.0",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"shadcn": "^4.13.0",
"tailwindcss": "^4",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint-plugin-jsx-a11y>eslint": "10"
}
}
},
"packageManager": "pnpm@9.15.0"
}