-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "Plant-Disease-Backend",
"version": "1.0.0",
"description": "Backend Work",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon src/app.ts ",
"build": "tsc",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:helpers": "jest --testPathPattern=tests/helpers",
"test:services": "jest --testPathPattern=tests/services",
"test:integration": "jest --testPathPattern=tests/integration"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"axios": "^1.13.5",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.3",
"cloudinary": "^1.41.3",
"cookie-parser": "^1.4.7",
"cookieparser": "^0.1.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"express": "^5.2.1",
"helmet": "^8.1.0",
"joi": "^18.0.2",
"joi-extract-type": "^15.0.8",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.1.5",
"multer": "^2.0.2",
"multer-storage-cloudinary": "^4.0.0",
"nanoid": "^3.3.11",
"nodemon": "^3.1.11",
"otpauth": "^9.4.1",
"qrcode": "^1.5.4",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^25.0.10",
"@types/qrcode": "^1.5.6",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.5.0",
"supertest": "^6.3.4",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}