-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.16 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
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
78
79
{
"name": "blog",
"version": "1.2.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "node scripts/generate-llms.mjs && next build",
"analyze": "ANALYZE=true node scripts/generate-llms.mjs && ANALYZE=true next build --webpack",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fingerprintjs/fingerprintjs": "^4.6.2",
"@giscus/react": "^3.1.0",
"@next/third-parties": "^16.2.6",
"@types/lodash": "^4.17.16",
"@types/three": "^0.183.1",
"@uiw/react-markdown-preview": "^5.2.0",
"@uiw/react-md-editor": "^4.0.5",
"@vercel/blob": "^0.27.3",
"axios": "^1.8.4",
"feed": "^4.2.2",
"lodash": "^4.17.21",
"mongoose": "^8.13.2",
"motion": "^12.23.24",
"next": "16.2.6",
"next-auth": "^4.24.11",
"prettier": "^3.5.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-icons": "^5.5.0",
"react-lottie-player": "^2.1.0",
"recharts": "^3.8.0",
"resend": "^6.5.2",
"sharp": "^0.33.5",
"three": "^0.183.2",
"uuid": "^13.0.0",
"zustand": "^5.0.3"
},
"lint-staged": {
"*.{ts,tsx}": "pnpm exec eslint --fix"
},
"pnpm": {
"overrides": {
"csstype": "3.1.3"
}
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/hast": "^3.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.30",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-lottie": "^1.2.10",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.6",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-loader": "^0.5.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}