-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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
{
"name": "agricon-express-backend",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "nodemon --exec tsx src/index.ts",
"start": "node dist/index.js",
"start:dev": "tsx src/index.ts",
"build": "tsc",
"seed": "tsx src/scripts/seedMockData.ts",
"build:render": "tsc && node scripts/fix-imports.cjs",
"test": "jest",
"lint": "cross-env NODE_NO_WARNINGS=1 eslint src --ext .ts,.tsx",
"migrate": "tsx src/migration/migrate.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InternPulse/agricon-express-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/InternPulse/agricon-express-backend/issues"
},
"homepage": "https://github.com/InternPulse/agricon-express-backend#readme",
"description": "",
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/cors": "^2.8.19",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.31",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"cross-env": "^7.0.3",
"eslint": "^9.27.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@prisma/client": "^6.9.0",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/multer": "^1.4.13",
"@types/pg": "^8.15.4",
"@types/sequelize": "^4.28.20",
"cloudinary": "^2.7.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"express-validator": "^7.2.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.1",
"node-cron": "^4.1.1",
"pg": "^8.16.0",
"prisma": "^6.9.0",
"sequelize": "^6.37.7"
}
}