-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "nodejs-file-uploader",
"version": "1.0.0",
"description": "File Uploader assignment from The Odin Project.",
"main": "index.js",
"scripts": {
"dev": "tsx watch ./src/index.ts",
"build": "npx prisma generate && tsc",
"start": "node ./dist/index.js",
"prod_build": "npx prisma migrate deploy && npx prisma generate && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whatisaProCoder/nodejs-file-uploader.git"
},
"author": "Pritam Debnath",
"license": "MIT",
"bugs": {
"url": "https://github.com/whatisaProCoder/nodejs-file-uploader/issues"
},
"homepage": "https://github.com/whatisaProCoder/nodejs-file-uploader#readme",
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/multer": "^2.1.0",
"@types/node": "^25.5.0",
"@types/passport": "^1.0.17",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.20.0",
"prisma": "^7.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@quixo3/prisma-session-store": "^3.1.19",
"bcryptjs": "^3.0.3",
"cloudinary": "^2.9.0",
"dotenv": "^17.4.0",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"express-validator": "^7.3.2",
"multer": "^2.1.1",
"node-cron": "^4.2.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.20.0"
}
}