-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "JS_DSA_Server",
"version": "1.0.0",
"description": "This is the learning for DSA in JavaScript (Open API)",
"repository": {
"type": "git",
"url": "https://github.com/Ramraghul/JS_DSA_Server.git"
},
"author": "Raghul",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm run local",
"local": "nodemon ./src/Server.ts",
"build": "tsc",
"test": "jest",
"prepush": "npm run test",
"generate_docs": "ts-node ./src/Doc/Swagger/master.swagger.ts",
"dev": "npm run local",
"production": "NODE_ENV=production npm run start"
},
"dependencies": {
"@types/request-ip": "^0.0.41",
"axios": "^1.6.3",
"body-parser": "^1.20.2",
"chalk": "4.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"request-ip": "^3.3.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"keywords": [
"JavaScript",
"DSA",
"Express",
"Node.js",
"TypeScript"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"include": [
"src/*.ts"
],
"exclude": [
"node_modules"
]
}