-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@material-tailwind/react": "^2.0.1",
"@mozilla/readability": "^0.4.4",
"@prisma/client": "^4.14.1",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"axios": "^1.4.0",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"framer-motion": "^10.12.16",
"jsdom": "^22.1.0",
"next": "^13.4.3",
"openai": "^3.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.9.0",
"react-intersection-observer": "^9.4.4",
"react-loadingg": "^1.7.2",
"swiper": "^9.3.2",
"typeface-montserrat": "^1.1.13",
"typewriter-effect": "^2.20.1"
},
"devDependencies": {
"@types/html-to-text": "^9.0.1",
"@types/node": "^20.2.5",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.23",
"prisma": "^4.15.0",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}