-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 763 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
{
"name": "koinxbackendassignment",
"version": "1.0.0",
"description": "Its is assignment for koinX company for role as backend intern",
"main": "server.js",
"scripts": {
"vercel-build": "tsc && npm run build",
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon dist/server.js",
"watch": "tsc -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mongoose": "^8.9.4",
"node-cron": "^3.0.3",
"nodemon": "^3.1.9",
"typescript": "^5.7.3",
"@types/node": "^22.10.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node-cron": "^3.0.11"
}
}