-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2.07 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
{
"name": "say-something",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx prisma generate && NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db-connect": "pscale connect say-something dev --port 3309",
"db-push": "npx prisma db push",
"db-reset": "npx prisma migrate reset && npm run db-push",
"db-shell": "pscale shell say-something dev",
"postinstall": "prisma generate",
"prepare": "husky install"
},
"dependencies": {
"@mantine/core": "^4.2.11",
"@mantine/form": "^4.2.12",
"@mantine/hooks": "^4.2.11",
"@mantine/next": "^4.2.10",
"@mantine/notifications": "^4.2.11",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^4.0.0",
"@trpc/client": "^9.25.3",
"@trpc/next": "^9.25.3",
"@trpc/react": "^9.25.3",
"@trpc/server": "^9.25.3",
"cookies-next": "^2.1.1",
"date-fns": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"next": "12.2.0",
"next-auth": "^4.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.1",
"superjson": "^1.9.1",
"tabler-icons-react": "^1.49.0",
"zod": "^3.17.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"@types/js-cookie": "^3.0.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/jwt-encode": "^1.0.0",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"prettier": "2.7.1",
"prisma": "^4.0.0",
"sass": "^1.53.0",
"typescript": "4.7.4"
}
}