This repository was archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.08 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
88
{
"name": "conversea",
"version": "1.0.0",
"private": true,
"scripts": {
"prettier": "prettier --write .",
"prisma-generate": "prisma generate",
"prisma-migrate": "prisma migrate deploy",
"prisma-migrate-dev": "prisma migrate dev",
"prisma-seed": "prisma db seed",
"prisma-studio": "prisma studio --browser none",
"prisma-reset": "cross-env NODE_ENV=development dotenv-flow -- prisma migrate reset",
"postinstall": "pnpm prisma-generate",
"lint": "cross-env NODE_ENV=development dotenv-flow -- run-p dev:pre lint:* --print-label",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint --ext \".js,.ts,.tsx\" --report-unused-disable-directives --report-unused-disable-directives --max-warnings 0 --cache .",
"dev": "cross-env NODE_ENV=development dotenv-flow -- run-s dev:* --print-label",
"dev:pre": "node ./scripts/predev.mjs",
"dev:db": "run-s prisma-migrate-dev prisma-generate prisma-seed",
"dev:run": "run-p dev:run:*",
"dev:run:next": "next dev",
"dev:run:prisma-studio": "pnpm prisma-studio",
"build": "cross-env NODE_ENV=production dotenv-flow -- run-s build:* --print-label",
"build:pre": "node ./scripts/prebuild.mjs",
"build:db": "run-s prisma-generate prisma-migrate",
"build:build": "next build",
"start": "next start",
"prod": "run-s build start"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@fortawesome/fontawesome-svg-core": "~1 || ~6",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^3.0.0",
"@mantine/next": "^6.0.1",
"@prisma/client": "^4.11.0",
"@tanstack/react-query": "^4.24.10",
"@trpc/client": "^10.15.0",
"@trpc/next": "^10.15.0",
"@trpc/react-query": "^10.15.0",
"@trpc/server": "^10.15.0",
"@vercel/analytics": "^1.0.1",
"argon2": "^0.30.3",
"clsx": "^1.1.1",
"emailjs-com": "^3.2.0",
"fontawesome-svg-core": "link:@fortawesome\\fontawesome-svg-core",
"next": "^13.4.2",
"next-auth": "^4.20.1",
"particles-bg": "^2.5.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.8",
"recharts": "^2.6.2",
"superjson": "^1.7.4",
"tiny-invariant": "^1.3.1",
"zod": "^3.20.6"
},
"devDependencies": {
"@types/node": "^18.7.20",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"cross-env": "^7.0.3",
"dotenv-expand": "^10.0.0",
"dotenv-flow-cli": "^1.0.0",
"eslint": "^8.30.0",
"eslint-config-next": "^13.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"prisma": "^4.11.0",
"tsx": "^3.12.3",
"typescript": "^5.0.3"
},
"publishConfig": {
"access": "restricted"
}
}