-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
114 lines (114 loc) · 3.78 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "duelyst-share",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "dotenv -o -e env.test -- jest --passWithNoTests",
"prepare": "husky install && cp -n .env.template .env.local | true",
"prebuild": "prisma generate",
"prisma": "dotenv -o -e .env.local prisma",
"migrate:dev": "dotenv -o -e .env.local prisma migrate dev",
"migrate:prod": "dotenv -o -e .env.production prisma migrate deploy",
"studio:dev": "dotenv -o -e .env.local prisma studio",
"studio:prod": "dotenv -o -e .env.production prisma studio",
"generate:cards.json": "ts-node scripts/generateCardsJson.ts && yarn prettier --write src/data/carddata.json",
"sync:db": "dotenv -o -e .env.local -e .env ts-node scripts/syncDb.ts",
"sync:db:prod": "dotenv -o -e .env.production -e .env ts-node scripts/syncDb.ts",
"tournament:import": "ts-node scripts/importTournament.ts",
"tournament:export": "ts-node scripts/exportTournament.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@headlessui/tailwindcss": "^0.1.1",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "4.6.1",
"@tanstack/react-query": "^4.18.0",
"@tanstack/react-query-devtools": "^4.20.4",
"@trpc/client": "10.4.1",
"@trpc/next": "10.4.1",
"@trpc/react-query": "^10.4.1",
"@trpc/server": "10.4.1",
"@types/csv-parse": "^1.2.2",
"@types/csv-stringify": "^3.1.0",
"@types/minimist": "^1.2.2",
"@types/recharts": "^1.8.24",
"@vercel/analytics": "^0.1.5",
"classnames": "2.3.2",
"color-fns": "^0.1.1",
"csv-parse": "^5.3.3",
"csv-stringify": "^6.2.3",
"date-fns": "2.29.3",
"dotenv": "16.0.3",
"lodash": "4.17.21",
"minimist": "^1.2.7",
"nanoid": "3.3.4",
"next": "13.0.5",
"next-auth": "^4.17.0",
"next-superjson": "0.0.4",
"puppeteer": "19.3.0",
"qrcode.react": "3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.6.0",
"react-responsive": "^9.0.2",
"react-spinners": "0.13.6",
"react-tooltip": "4.5.0",
"react-visibility-observer": "^1.0.4",
"recharts": "^2.1.16",
"superjson": "1.11.0",
"trpc-client-devtools-link": "^0.2.1-next",
"usehooks-ts": "^2.9.1",
"zod": "3.19.1"
},
"devDependencies": {
"@savvywombat/tailwindcss-grid-areas": "^3.0.0",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/lodash": "4.14.190",
"@types/node": "18.11.9",
"@types/node-fetch": "2.6.2",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"autoprefixer": "10.4.13",
"dotenv-override-cli": "^4.0.1",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"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",
"husky": ">=8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": ">=13.0.4",
"node-fetch": "2",
"organize-imports-cli": "^0.10.0",
"postcss": "8.4.19",
"prettier": "2.8.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "4.6.1",
"tailwindcss": "3.2.4",
"tailwindcss-animate": "1.0.5",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "4.9.3",
"webpack": "^5.75.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"organize-imports-cli",
"eslint --cache --fix"
],
"*.{json,css,md}": "prettier --write"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}