-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.1 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
{
"name": "silverflame",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --cache --write .",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@prisma/client": "^5.10.2",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@tsconfig/next": "^2.0.1",
"@types/color-hash": "^1.0.5",
"@types/jest": "29.5.12",
"@types/node": "20.11.20",
"@types/react": "18.2.58",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "18.2.19",
"@types/react-portal": "^4.0.7",
"autoprefixer": "10.4.17",
"color-hash": "^2.0.2",
"daisyui": "^4.7.2",
"eslint": "8.57.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-testing-library": "^6.2.0",
"hast-util-from-html": "^2.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lottie-react": "^2.4.0",
"moment-timezone": "^0.5.45",
"next": "14.1.0",
"next-auth": "^4.24.6",
"postcss": "8.4.35",
"pretendard": "^1.3.9",
"prism-react-renderer": "^2.3.1",
"prisma": "^5.10.2",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1",
"react-portal": "^4.2.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"server-only": "^0.0.1",
"sharp": "^0.33.2",
"tailwindcss": "3.4.1",
"typescript": "5.3.3",
"zod": "^3.22.4",
"zustand": "^4.5.1"
},
"devDependencies": {
"git-branch-is": "^4.0.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"ts-node": "^10.9.2"
}
}