-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
{
"name": "shubhdeep-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run setup-sidecar\" \"next dev -p 8080\"",
"setup-sidecar": "npx @spotlightjs/spotlight",
"build": "next build",
"start": "next start",
"prettier": "prettier --check .",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"check-format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types",
"migrate": "prisma migrate dev --name init",
"postinstall": "prisma generate",
"generate": "prisma generate",
"db:setup": "npm run migrate && npm run generate"
},
"dependencies": {
"@mdx-js/loader": "^3.0.1",
"@next/mdx": "^14.2.5",
"@next/third-parties": "^14.2.5",
"@prisma/client": "^5.18.0",
"@sentry/nextjs": "^8.34.0",
"@tailwindcss/typography": "^0.5.14",
"@types/node": "22.3.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vercel/analytics": "^1.3.1",
"autoprefixer": "10.4.20",
"canvas-confetti": "^1.9.3",
"clsx": "^2.1.1",
"crypto": "^1.0.1",
"eslint-config-next": "14.2.5",
"framer-motion": "^11.3.28",
"gray-matter": "^4.0.3",
"next": "^14.2.9",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.3.0",
"postcss": "8.4.41",
"prisma": "^5.18.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.3.0",
"reading-time": "^1.5.0",
"rehype-accessible-emojis": "^0.3.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-unwrap-images": "^4.0.0",
"rss": "^1.2.2",
"shiki": "^1.13.0",
"swr": "^2.2.5",
"tailwindcss": "3.4.10",
"tailwindcss-hocus": "^0.0.7",
"typescript": "5.5.4"
},
"devDependencies": {
"@spotlightjs/spotlight": "^2.3.1",
"@types/canvas-confetti": "^1.6.4",
"@types/gtag.js": "^0.0.20",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"concurrently": "^8.2.2",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "3.0.3"
},
"volta": {
"node": "20.11.0"
}
}