-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.37 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
70
71
72
73
74
75
76
77
78
{
"name": "code-hosting-platform",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"tsx watch server/index.ts\"",
"build": "next build && tsc --project server/tsconfig.json",
"start": "concurrently \"next start\" \"node server/dist/index.js\"",
"lint": "next lint",
"type-check": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"prisma:seed": "tsx prisma/seed.ts",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@monaco-editor/react": "^4.6.0",
"@paypal/checkout-server-sdk": "^1.0.3",
"@paypal/paypal-js": "^9.3.0",
"@prisma/client": "^5.10.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@stripe/stripe-js": "^5.5.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"express": "^4.18.2",
"jose": "^5.2.2",
"jszip": "^3.10.1",
"lucide-react": "^0.344.0",
"next": "14.1.3",
"next-auth": "^4.24.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"stripe": "^17.5.0",
"tailwind-merge": "^2.2.1",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prisma": "^5.10.2",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}