-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 757 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 757 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"configure": "./bin/configure_db.sh",
"start": "node index",
"dev": "nodemon index"
},
"author": "Selva",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"date-format": "^4.0.14",
"express": "^4.21.1",
"fs-extra": "^11.2.0",
"openapi-validator-middleware": "^3.2.6",
"pg-promise": "^11.10.2",
"recursive-readdir": "^2.2.3",
"suppress-experimental-warnings": "^2.0.0",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"cors": "^2.8.5",
"nodemon": "^3.1.7"
}
}