-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "tsc-express-crud-mongo",
"version": "1.0.0",
"description": "CRUD app using express.js and MongoDB",
"main": "index.js",
"scripts": {
"test-echo": "echo \"Hello\"",
"build": "npx tsc",
"start": "npx tsc && node lib/src/index.js",
"test": "jest --config ./jest.config.js"
},
"keywords": [
"Node.js",
"express.js",
"unit",
"testing",
"mongoose",
"mongodb",
"express-validator",
"swagger-ui",
"swagger",
"cors",
"body-parser",
"typescript",
"helmet",
"winston"
],
"author": "Manisha Jadhav",
"license": "ISC",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"express": "^4.19.2",
"express-validator": "^7.1.0",
"helmet": "^7.1.0",
"mongoose": "^8.4.0",
"short-uuid": "^5.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"supertest": "^7.0.0",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}