-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.56 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
{
"name": "open-source-project",
"private": true,
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"install:all": "npm install",
"db:setup": "npm run db:generate --workspace=@repo/database && npm run db:push --workspace=@repo/database",
"db:seed": "npm run db:seed --workspace=@repo/database",
"dev": "npm run dev --workspace=@repo/web",
"dev:api": "npm run dev --workspace=@repo/api",
"generate": "prisma generate --schema=apps/web/prisma/schema.prisma",
"postinstall": "npm run generate"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"prisma": "5.22.0",
"tailwindcss": "^4"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@arcjet/inspect": "^1.0.0",
"@arcjet/next": "^1.0.0",
"@auth/prisma-adapter": "^2.11.1",
"@prisma/client": "^5.22.0",
"@tailwindcss/typography": "^0.5.19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.3.1",
"isomorphic-dompurify": "^2.35.0",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"next-auth": "^4.24.13",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"npm": "^11.7.0",
"prop-types": "^15.8.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0"
}
}