-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 838 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 838 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS='--loader ts-node/esm' ts-node src/index.ts",
"win-dev": "set NODE_OPTIONS=--loader ts-node/esm && ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.1",
"express": "^4.21.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"cloudinary": "^2.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"firebase": "^11.3.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"zod": "^3.24.2"
}
}