-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "core",
"version": "1.0.0",
"workspaces": [
"./packages/*"
],
"private": true,
"scripts": {
"postinstall": "patch-package",
"dev": "next dev --turbo | pino-pretty",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:types": "tsc --noEmit",
"test": "jest",
"prettier": "prettier -w .",
"test:e2e": "npx prisma migrate reset --force && playwright test",
"upload-content-schema": "ts-node --project tsconfig.script.json ./scripts/upload-content-schema packages/content-schema/schemas/ ./src/shared/api/content/_schemas",
"dev:content-schema": "npm run dev --workspace=@core/content-schema"
},
"prisma": {
"seed": "ts-node --project tsconfig.script.json prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.14",
"@aws-sdk/client-s3": "^3.490.0",
"@aws-sdk/lib-storage": "^3.490.0",
"@hookform/resolvers": "^3.3.2",
"@prisma/client": "^5.6.0",
"@radix-ui/react-accordion": "^1.1.2",
"@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-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@sentry/nextjs": "^7.84.0",
"@tanstack/react-query": "^5.28.4",
"@trpc/client": "^11.0.0-next-beta.318",
"@trpc/next": "^11.0.0-next-beta.318",
"@trpc/react-query": "^11.0.0-next-beta.318",
"@trpc/server": "^11.0.0-next-beta.318",
"ajv": "^8.12.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.0.0",
"cuid": "^3.0.0",
"esbuild": "^0.19.12",
"inversify": "^6.0.2",
"json-schema-to-typescript": "^13.1.2",
"lodash-es": "^4.17.21",
"lucide-react": "^0.294.0",
"mdx-bundler": "^10.0.1",
"next": "^14.2.2",
"next-auth": "^4.24.5",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.8",
"patch-package": "^8.0.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"qs": "^6.12.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.48.2",
"reactflow": "^11.11.2",
"reflect-metadata": "^0.2.1",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"yaml": "^2.3.4",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.10",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
"@types/qs": "^6.9.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"dotenv": "^16.3.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.1.0",
"prisma": "^5.12.1",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"engines": {
"node": ">=18.11.0"
}
}