generated from kuroski/next-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.32 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
{
"name": "next-project-template",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"install:playwright": "playwright install --with-deps",
"test": "playwright test --reporter=line",
"test:debug": "DEBUG=pw:api PWDEBUG=1 playwright test",
"vercel-build": "prisma migrate deploy && next build"
},
"prisma": {
"seed": "esno ./prisma/seed.ts"
},
"dependencies": {
"@chakra-ui/react": "2.2.8",
"@chakra-ui/styled-system": "2.2.7",
"@emotion/react": "11",
"@emotion/styled": "11",
"@hookform/devtools": "4.2.2",
"@next-auth/prisma-adapter": "1.0.4",
"@prisma/client": "4.2.1",
"@radix-ui/react-icons": "1.1.1",
"@tanstack/react-table": "8.5.11",
"@tanstack/table-core": "8.5.11",
"@trpc/client": "9.27.0",
"@trpc/next": "9.27.0",
"@trpc/react": "9.27.0",
"@trpc/server": "9.27.0",
"camelcase-keys": "7.0.2",
"csstype": "3.1.0",
"envsafe": "2.0.3",
"fp-ts": "2.12.2",
"framer-motion": "7",
"next": "12.2.5",
"next-auth": "4.10.3",
"next-connect": "0.13.0",
"next-query-params": "3.0.0",
"next-translate": "1.5.0",
"octokit": "1.8.1",
"pino": "8.4.1",
"postcss": "8.4.16",
"query-string": ">=7.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.34.1",
"react-query": "3.39.2",
"snakecase-keys": "5.4.2",
"superjson": "1.9.1",
"zod": "3.18.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@faker-js/faker": "7.4.0",
"@mswjs/data": "0.10.1",
"@playwright/test": "1.25.0",
"@types/koa": "2.13.5",
"@types/node": "18.7.3",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"esno": "0.16.3",
"express": "4.18.1",
"koa": "2.13.4",
"msw": "0.44.2",
"playwright": "1.25.0",
"playwright-msw": "1.0.0",
"playwright-testing-library": "4.3.0",
"prisma": "4.2.1",
"typescript": "4.7.4",
"zod-prisma": "0.5.4"
},
"msw": {
"workerDirectory": "public"
},
"volta": {
"node": "18.7.0",
"pnpm": "7.8.0"
}
}