-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "mini-crm",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:3000": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "tsx src/lib/seed-mongodb.ts",
"test": "jest"
},
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose": "^5.11.96",
"bcryptjs": "^3.0.2",
"cloudinary": "^2.7.0",
"dotenv": "^17.2.0",
"jsonwebtoken": "^9.0.2",
"markdown-it": "^14.1.0",
"mongoose": "^8.16.2",
"multer": "^2.0.1",
"next": "^14.2.30",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.3.5",
"@swc/core": "^1.12.11",
"@swc/jest": "^0.2.39",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/supertest": "^6.0.3",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"jsdom": "^26.1.0",
"mongodb-memory-server": "^10.1.4",
"supertest": "^7.1.3",
"tailwindcss": "^4",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5"
}
}