-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.63 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
{
"name": "wip-lab",
"version": "1.0.0",
"description": "A repository for ongoing code experiments, prototypes, and work-in-progress projects.\r Used for testing, learning, and iterating on ideas.",
"homepage": "https://github.com/ANKITKUMARBARIK/wip-lab#readme",
"bugs": {
"url": "https://github.com/ANKITKUMARBARIK/wip-lab/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ANKITKUMARBARIK/wip-lab.git"
},
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only src/server.ts",
"build": "tsc -p .",
"start": "node dist/server.js"
},
"dependencies": {
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.19.1",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nodemailer": "^7.0.9",
"pino": "^10.0.0",
"pino-pretty": "^13.1.2",
"streamifier": "^0.1.1",
"stripe": "^19.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.7.2",
"@types/nodemailer": "^7.0.2",
"@types/pino": "^7.0.4",
"@types/streamifier": "^0.1.2",
"@types/stripe": "^8.0.416",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}