-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.54 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
80
81
82
83
84
85
86
87
88
89
{
"name": "nodejs-backend-project",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "tsx dist/index.js",
"dev": "nodemon",
"dev:offline": "pnpm build:lambda && serverless offline",
"build:lambda": "pnpm build:swagger && tsc -p tsconfig.app.json && tsc-alias -p tsconfig.app.json",
"build:swagger": "tsx scripts/generate-swagger.ts",
"lint": "eslint .",
"test": "jest",
"lint:fix": "eslint . --fix",
"ts-check": "tsc --noEmit",
"build": "pnpm lint && tsc -p tsconfig.app.json",
"preview": "pnpm build && pnpm start",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"prepare": "husky || true",
"pre-commit": "lint-staged"
},
"keywords": [],
"author": "Shubhojit Mitra <Shubhojit.120225@stu.upes.ac.in>",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/client-sqs": "^3.922.0",
"axios": "^1.16.1",
"bcryptjs": "^3.0.3",
"cors": "2.8.5",
"dotenv": "17.2.3",
"drizzle-orm": "^0.44.6",
"express": "5.1.0",
"helmet": "8.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"serverless-http": "^4.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "9.38.0",
"@types/aws-lambda": "^8.10.161",
"@types/bcryptjs": "^3.0.0",
"@types/cors": "2.8.19",
"@types/express": "4.17.21",
"@types/helmet": "^4.0.0",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "24.8.1",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.5",
"esbuild": "^0.28.0",
"eslint": "9.38.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "16.4.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^15.5.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"serverless-offline": "^14.7.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.5",
"tsc-alias": "^1.8.17",
"tsx": "4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "8.46.1"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
],
"*.{ts,js,json,md}": [
"prettier --write"
]
}
}