This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.85 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": "next-prisma-starter",
"version": "0.0.1",
"private": true,
"engines": {
"node": "14.16.*"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "yarn db:migrate",
"start": "next start -p $PORT",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy --preview-feature && yarn db:generate",
"db:gen:migration": "prisma migrate dev --preview-feature",
"db:reset": "prisma migrate reset --preview-feature",
"lint": "eslint src --ext ts,tsx,js,jsx"
},
"dependencies": {
"@prisma/client": "3.1.1",
"apollo-server-micro": "^3.3.0",
"argon2": "^0.28.2",
"cookie": "^0.4.1",
"graphql": "^15.6.0",
"graphql-hooks": "^5.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"micro": "^9.3.4",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-error-boundary": "^3.1.3",
"react-hook-form": "^7.16.2",
"redaxios": "^0.4.1",
"superjson": "^1.8.1",
"tailwindcss": "^2.2.16"
},
"devDependencies": {
"@tailwindcss/forms": "^0.3.4",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.2",
"@types/react": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.32.0",
"autoprefixer": "^10.3.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-finiam": "^1.0.4",
"eslint-config-import": "^0.13.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.3.8",
"prettier": "^2.4.1",
"prisma": "^3.1.1",
"typescript": "^4.4.3"
}
}