-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.6 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.6 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
90
91
{
"name": "library-management-rest-api",
"description": "Library Management REST API",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git@github.com:frckbrice/library-management-REST-API.git"
},
"author": "Avom Brice",
"license": "MIT",
"homepage": "https://github.com/frckbrice/library-management-REST-API",
"version": "1.0.0",
"type": "commonjs",
"scripts": {
"dev": "nodemon --exec ts-node index.ts",
"start": "node dist/index.js",
"prebuild": "node -e \"try{require('fs').rmSync(require('path').join(process.cwd(),'node_modules','drizzle-orm','sqlite-core'),{recursive:true,force:true})}catch(e){}\"",
"build": "tsc",
"build:prod": "NODE_ENV=production tsc",
"check": "tsc --noEmit",
"lint": "eslint ./**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"db:push": "npx drizzle-kit push",
"db:seed": "tsx ./config/database/seed.ts",
"db:migrate": "npx drizzle-kit migrate",
"db:generate": "npx drizzle-kit generate",
"db:reset": "tsx ./config/database/reset-db.ts",
"git-flow": "bash scripts/git-flow.sh"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.25",
"@neondatabase/serverless": "^0.10.4",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^30.0.0",
"@types/multer": "^1.4.13",
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"cmdk": "^1.1.1",
"connect-pg-simple": "^10.0.0",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.39.3",
"drizzle-zod": "^0.7.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"jest": "^30.0.3",
"memorystore": "^1.6.7",
"multer": "^2.0.1",
"multer-storage-cloudinary": "^4.0.0",
"mysql2": "^3.14.1",
"nodemailer": "^7.0.4",
"nodemon": "^3.1.10",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.16.0",
"ts-jest": "^29.4.0",
"uuid": "^11.1.0",
"winston": "^3.19.0",
"ws": "^8.18.0",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/connect-pg-simple": "^7.0.3",
"@types/swagger-ui-express": "^4.1.6",
"@types/cors": "^2.8.19",
"@types/express": "4.17.21",
"@types/express-session": "^1.18.0",
"@types/node": "20.16.11",
"@types/nodemailer": "^6.4.17",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.15.4",
"@types/ws": "^8.5.13",
"drizzle-kit": "^0.30.4",
"esbuild": "^0.25.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "5.6.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}