-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.7 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
{
"name": "prisma-nextjs-rsc",
"version": "0.1.0",
"private": true,
"homepage": "https://hyochan.dev",
"scripts": {
"dev:next": "NODE_OPTIONS='--inspect' next dev",
"dev": "concurrently \"yarn dev:next\" \"tailwindcss --input ./styles/root.css --output ./styles/output.css --watch\"",
"build": "tailwindcss ./styles/root.css --output ./styles/output.css && yarn generate:prisma && next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"seed": "dotenv -e .env.local -- prisma db seed",
"migrate:dev": "dotenv -e .env.local -- prisma migrate dev",
"migrate:prod": "dotenv -e .env.prod -- prisma migrate deploy",
"generate:prisma": "prisma generate",
"generate": "yarn generate:prisma",
"test": "vitest"
},
"dependencies": {
"@amplitude/analytics-browser": "^1.9.1",
"@amplitude/analytics-node": "^1.1.0",
"@crello/react-lottie": "^0.0.11",
"@formatjs/intl-localematcher": "^0.2.32",
"@next/font": "v13.1.6",
"@primer/octicons-react": "^18.2.0",
"@prisma/client": "^4.11.0",
"axios": "^1.3.4",
"client-only": "^0.0.1",
"negotiator": "^0.6.3",
"next": "v13.1.6",
"next-auth": "^4.20.1",
"prisma": "^4.11.0",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-hamburger-menu": "^1.2.1",
"react-hook-form": "^7.43.7",
"react-simple-snackbar": "^1.1.11",
"react-text-transition": "^3.0.2",
"server-only": "^0.0.1",
"tiny-invariant": "^1.3.1",
"typescript": "5.0.2",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@dooboo/eslint-config-react": "^1.0.5",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/react": "^14.0.0",
"@types/negotiator": "^0.6.1",
"@types/node": "^18.15.3",
"@types/react": "18.0.28",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "18.0.11",
"@types/react-hamburger-menu": "^0.0.4",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.3",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"commitlint-plugin-function-rules": "^1.7.1",
"concurrently": "^7.6.0",
"dotenv-cli": "^7.1.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"flatten-tailwindcss-theme": "^1.0.0",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwind-merge": "^1.10.0",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.1",
"vitest": "^0.29.3"
},
"prisma": {
"seed": "ts-node --transpile-only ./prisma/seed.ts"
},
"packageManager": "[email protected]"
}