-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "mtg-prototype",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "husky",
"postinstall": "prisma generate && prisma migrate deploy"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.20.0",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-form": "^0.1.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/themes": "^3.1.4",
"@vercel/blob": "^0.25.0",
"html2canvas": "^1.4.1",
"lodash": "^4.17.21",
"mana-font": "^1.15.9",
"next": "14.2.14",
"next-auth": "^5.0.0-beta.22",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@types/lodash": "^4.17.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.13",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}