-
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) · 769 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 769 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": "payment-system",
"version": "1.0.0",
"description": "Payment Integration",
"main": "index.js",
"author": "Fahim Ahammed Firoz",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node ./dist/index.js",
"start:prod": "node ./dist/index.js",
"build": "tsc"
},
"dependencies": {
"axios": "^1.7.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.5.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.3.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
}
}