-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.43 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
{
"name": "radiant",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typegen": "sanity schema extract --path=src/sanity/extract.json && sanity typegen generate && rm ./src/sanity/extract.json",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@headlessui/react": "^2.2.6",
"@heroicons/react": "^2.2.0",
"@sanity/image-url": "^1.1.0",
"@sanity/vision": "^4.2.0",
"@types/pg": "^8.15.5",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.5",
"feed": "^5.1.0",
"framer-motion": "^12.23.11",
"next": "15.4.4",
"next-auth": "^4.24.11",
"next-sanity": "^10.0.5",
"pg": "^8.16.3",
"react": "^19",
"react-dom": "^19",
"react-editext": "^7.1.0",
"react-use-measure": "^2.1.7",
"sanity": "^4.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.4.4",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"typescript": "^5"
}
}