-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "dr-niaraki-website",
"version": "0.1.0",
"private": true,
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"type-fix": "tsc --noEmit && npm run lint:fix"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"framer-motion": "^11.11.17",
"globals": "^15.14.0",
"lodash": "^4.17.21",
"lucide-react": "^0.460.0",
"next": "15.1.11",
"next-themes": "^0.4.3",
"process": "^0.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.13.1",
"react-window": "^1.8.11",
"zustand": "^5.0.4"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.15.0",
"eslint-config-next": "^15.3.2",
"eslint-plugin-react": "^7.37.4",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3"
}
}