-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.39 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
{
"name": "node-server-starter",
"version": "2.1.2",
"description": "Node.js Server Starter Template. Helps to developer setup the project within few minutes",
"main": "index.js",
"scripts": {
"start": "nodemon dist/server.js",
"start:dev": "nodemon src/server.ts",
"build": "npx tsc --outDir dist",
"create-module": "node scripts/createModule.js",
"delete-module": "node scripts/delete-module.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Minhazul Abedin Munna",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cloudinary": "^2.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"imgbb-uploader": "^1.5.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"nodemon": "^3.1.0",
"paypal-rest-sdk": "^1.8.1",
"socket.io": "^4.8.1",
"sslcommerz-lts": "^1.1.0",
"typescript": "^5.4.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/nodemailer": "^6.4.16",
"@types/paypal-rest-sdk": "^1.7.9",
"concurrently": "^9.1.0",
"ts-node": "^10.9.2"
}
}