-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "rankify",
"version": "2.0.0",
"engines": {
"node": ">=20.x"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"lint": "next lint",
"ts-check": "tsc --noEmit",
"validate": "npm run ts-check && npm run lint && npm run test",
"script:seed:base": "tsx ./scripts/seeds/base.ts",
"script:seed:mocks": "tsx ./scripts/seeds/mocks.ts",
"script:migrations:activities": "tsx ./scripts/migrations/activities/index.ts"
},
"dependencies": {
"@next/env": "^14.2.5",
"chart.js": "^4.4.4",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"lottie-react": "^2.4.0",
"lucide-react": "^0.427.0",
"mongoose": "^8.6.1",
"next": "14.2.5",
"openai": "^4.57.2",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"sharp": "^0.33.5",
"ts-node": "^10.9.2",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.1",
"daisyui": "^4.12.10",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"jest": "^29.7.0",
"jsdom": "^24.1.1",
"mongodb": "^6.9.0",
"mongodb-memory-server": "^10.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "^2.0.5"
}
}