-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.84 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.84 KB
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
{
"name": "appendix3",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"format": "git add --intent-to-add src/ && prettier --write $(git diff --name-only src/)",
"formatall": "prettier --write --log-level error src/",
"lint": "git add --intent-to-add src/ && eslint $(git diff --name-only src/)",
"lint:fix": "git add --intent-to-add src/ && eslint --fix $(git diff --name-only src/)",
"lintall": "eslint src/",
"lintall:fix": "eslint --fix src/",
"start": "next start",
"importolddb": "ts-node ./src/scripts/importOldDb",
"startstaging": "next start -p 3001",
"stage": "yarn lint && ts-node ./src/scripts/stage",
"deploy": "ts-node ./src/scripts/deploy"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@mantine/form": "^5.6.3",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "5.5.2",
"@tabler/icons-react": "2.40.0",
"@tanstack/react-query": "^4.10.0",
"@trpc/client": "^10.41.0",
"@trpc/next": "^10.41.0",
"@trpc/react-query": "^10.41.0",
"@trpc/server": "^10.41.0",
"cookies-next": "^2.1.1",
"cuid": "^2.1.8",
"dayjs": "^1.11.6",
"exceljs": "^4.4.0",
"ics": "^3.8.1",
"next": "^13.5.5",
"next-auth": "^4.12.3",
"qrcode-js-package": "^1.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.2",
"react-select": "^5.7.7",
"recharts": "^2.9.0",
"superjson": "1.9.1",
"zod": "^3.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@tanstack/react-query-devtools": "^4.10.1",
"@types/node": "18.0.0",
"@types/nodemailer": "^6.4.6",
"@types/react": "^18.2.29",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"JSONStream": "^1.3.5",
"autoprefixer": "^10.4.16",
"clsx": "^2.0.0",
"eslint": "^9.18.0",
"eslint-config-next": "^13.5.5",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^3.0.0",
"nodemailer": "^6.8.0",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.6",
"prisma": "5.5.2",
"prop-types": "^15.8.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"ct3aMetadata": {
"initVersion": "6.5.0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"printWidth": 80,
"endOfLine": "lf"
}
}