-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 KB
/
package.json
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
{
"name": "ecommerce_backend",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.ts",
"engines": {
"node": "18.x"
},
"scripts": {
"test": "jest --detectOpenHandles",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BurhanRaja/Ecommerce_Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BurhanRaja/Ecommerce_Backend/issues"
},
"homepage": "https://github.com/BurhanRaja/Ecommerce_Backend#readme",
"dependencies": {
"@vercel/node": "^2.14.3",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.0",
"multer": "^1.4.5-lts.1",
"razorpay": "^2.8.6",
"swagger-ui-express": "^4.6.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.10",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^8.2.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"typescript": "^5.1.6"
}
}