-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 2.25 KB
/
package.json
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
{
"name": "room.inlive.app",
"version": "0.1.0",
"private": true,
"type": "commonjs",
"scripts": {
"create:env": "printenv > .env",
"dev": "ts-node --project tsconfig.server.json ./server.ts",
"dev:next": "next dev",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/server.js",
"lint": "next lint",
"lint:fix": "next lint --fix",
"db:generate": "drizzle-kit generate",
"db:migrate": "ts-node ./migrate.ts",
"db:studio": "npx drizzle-kit studio"
},
"dependencies": {
"@inlivedev/inlive-js-sdk": "^0.21.4",
"@nextui-org/menu": "^2.0.28",
"@nextui-org/react": "^2.4.8",
"@react-email/components": "^0.0.22",
"@sentry/nextjs": "^8.26.0",
"compressorjs": "^1.2.1",
"drizzle-orm": "^0.32.0",
"express": "^4.18.2",
"form-data": "^4.0.0",
"framer-motion": "^10.16.4",
"ical-generator": "^7.1.0",
"linkify-html": "^4.1.3",
"lodash-es": "^4.17.21",
"mailgun.js": "^9.3.0",
"mixpanel-browser": "^2.47.0",
"nanoid": "^5.0.3",
"nanoid-dictionary": "^4.3.0",
"next": "^14.2.5",
"postgres": "^3.3.5",
"react": "^18.3.1",
"react-cropper": "^2.3.3",
"react-datepicker": "6.0.0",
"react-dom": "^18.3.1",
"react-email": "^2.1.1",
"react-hook-form": "^7.51.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/express": "^4.17.21",
"@types/lodash-es": "^4.17.9",
"@types/mixpanel-browser": "^2.47.1",
"@types/nanoid-dictionary": "^4.2.3",
"@types/node": "^20.3.3",
"@types/react": "^18.3.3",
"@types/react-datepicker": "^4.19.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.17",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.23.0",
"eslint": "^8.44.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"pg": "^8.11.3",
"postcss": "^8.4.33",
"prettier": "^2.8.8",
"readline": "^1.3.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}