-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.6 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
{
"name": "gordon-builds",
"private": true,
"scripts": {
"build:1-migrate": "prisma migrate deploy",
"build:2-build": "next build",
"build": "run-s build:*",
"db-up": "docker-compose up -d",
"db-seed": "prisma db seed",
"db-migrate-dev": "yarn prisma migrate dev",
"db-nuke": "docker-compose down --volumes --remove-orphans",
"dev": "next dev",
"dx": "run-s db-up format:prisma db-migrate-dev db-seed dev",
"postbuild": "next-sitemap",
"start": "next start -p 8069",
"lint": "next lint",
"studio": "prisma studio",
"format": "run-p format:*",
"format:prettier": "prettier --write 'src/*.{js,jsx,ts,tsx}'",
"format:prisma": "prisma format",
"fetch-data": "npx tsx src/provider/build-data.ts",
"test": "jest",
"generate": "graphql-codegen"
},
"prisma": {
"seed": "ts-node --esm ./prisma/seed.ts"
},
"dependencies": {
"@apollo/client": "^3.9.9",
"@babel/core": "^7.24.3",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/react-use-size": "^2.1.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.11.0",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"axios": "^1.6.8",
"case-anything": "^2.1.13",
"framer-motion": "^11.0.20",
"fs-extra": "^11.2.0",
"is-number": "^7.0.0",
"next": "14.1.4",
"next-auth-steam": "^0.3.0",
"next-mdx-remote": "^4.4.1",
"node-fetch": "^3.3.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.0.1",
"react-query": "^3.39.3",
"sharp": "^0.33.3",
"superjson": "^2.2.1",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.4",
"@graphql-typed-document-node/core": "^3.2.0",
"@swc/core": "^1.4.8",
"@swc/jest": "^0.2.36",
"@types/fs-extra": "^11.0.4",
"@types/is-number": "^7.0.5",
"@types/jest": "^29.5.12",
"@types/node": "20.11.30",
"@types/react": "18.2.69",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"dotenv": "^16.4.5",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"next-auth": "^4.24.7",
"next-sitemap": "^4.2.3",
"npm-run-all": "^4.1.5",
"prisma": "^5.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}