-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.69 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
{
"name": "t3-realworld",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate && prisma db push",
"db:seed": "prisma db seed",
"test:api": "./tests/api/run-api-tests.sh",
"test:ui": "pnpm exec playwright test"
},
"dependencies": {
"@prisma/client": "^5.18.0",
"@t3-oss/env-nextjs": "^0.3.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.1",
"@trpc/next": "^10.45.1",
"@trpc/react-query": "^10.45.1",
"@trpc/server": "^10.45.1",
"bcrypt": "^5.1.1",
"date-fns": "^2.30.0",
"gray-matter": "^4.0.3",
"jsonwebtoken": "^9.0.2",
"next": "^14.2.5",
"nextjs-cors": "^2.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark": "^14.0.3",
"remark-html": "^15.0.2",
"superjson": "1.12.2",
"trpc-openapi": "^1.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.46.1",
"@types/bcrypt": "^5.0.2",
"@types/eslint": "^8.56.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^18.19.45",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.19",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.56.0",
"eslint-config-next": "^13.5.6",
"eslint-plugin-deprecation": "^2.0.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^5.18.0",
"typescript": "^5.5.4"
},
"ct3aMetadata": {
"initVersion": "7.17.0"
},
"prisma": {
"seed": "node ./prisma/seed.js"
}
}