-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "blood-letter",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "panda codegen",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "tsc --noEmit",
"docs": "npx typedoc && open ./docs/index.html"
},
"dependencies": {
"@ark-ui/react": "^5.34.1",
"@dnd-kit/collision": "^0.3.2",
"@dnd-kit/dom": "^0.3.2",
"@dnd-kit/react": "^0.3.2",
"chroma-js": "^2.4.2",
"d3-random": "^3.0.1",
"lucide-react": "^0.577.0",
"mutative": "^1.0.8",
"nanoid": "^4.0.0",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@pandacss/dev": "^1.9.0",
"@types/chroma-js": "^2.1.4",
"@types/d3-random": "^3.0.3",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/safe-flat": "^2.0.0",
"@types/seedrandom": "^3.0.8",
"typedoc": "^0.26.7",
"typescript": "5.6.2"
}
}