-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.53 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "museum-management-rest-api",
"version": "1.0.0",
"type": "commonjs",
"license": "MIT",
"description": "A comprehensive RESTful API server for a digital museum platform, providing content management, user authentication, booking systems, and community forum features with real-time capabilities.",
"author": "Avom brice",
"repository": {
"type": "git",
"url": "https://github.com/frckbrice/museum-management-REST-API"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"keywords": [
"rest-api",
"express",
"typescript",
"museum",
"postgresql",
"drizzle-orm",
"openapi",
"swagger",
"websocket",
"session-auth"
],
"scripts": {
"dev": "nodemon --exec tsx index.ts",
"start": "node dist/index.js",
"prebuild": "find node_modules -type d -name 'sqlite-core' -exec rm -rf {} +",
"build": "tsc",
"build:prod": "NODE_ENV=production tsc",
"check": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"lint": "eslint \"**/*.ts\" --ignore-pattern node_modules --ignore-pattern dist",
"test": "jest",
"validate": "pnpm run format:check && pnpm run lint && pnpm run check && pnpm run test && pnpm run build",
"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"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.25",
"@neondatabase/serverless": "^0.10.4",
"@types/bcryptjs": "^2.4.6",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"cloudinary": "^2.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"connect-pg-simple": "^10.0.0",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.38.4",
"drizzle-seed": "^0.3.1",
"drizzle-zod": "^0.6.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"express-session": "^1.18.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"helmet": "^8.0.0",
"multer": "^2.0.1",
"multer-storage-cloudinary": "^4.0.0",
"mysql2": "^3.14.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.16.2",
"uuid": "^11.1.0",
"winston": "^3.15.0",
"ws": "^8.18.0",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"@types/bcrypt": "^5.0.2",
"@types/connect-pg-simple": "^7.0.3",
"@types/cors": "^2.8.19",
"@types/express": "4.17.21",
"@types/express-session": "^1.18.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^30.0.0",
"@types/multer": "^1.4.13",
"@types/node": "20.16.11",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/swagger-ui-express": "^4.1.6",
"@types/pg": "8.16.0",
"@types/supertest": "^6.0.2",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.13",
"drizzle-kit": "^0.27.1",
"esbuild": "^0.24.0",
"jest": "^30.0.3",
"nodemon": "^3.1.10",
"supertest": "^7.0.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "5.6.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}