-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 831 Bytes
/
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
{
"name": "nodejs-express-rest-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"description": "nodejs-express-rest-api",
"author": {
"name": "Somasekhar Reddy",
"email": "[email protected]",
"url": "https://resfrac.com"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"escape-html": "^1.0.3",
"express": "^4.19.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"mssql": "^11.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"supertest": "^7.0.0"
}
}