-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "dancecardbackend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --detectOpenHandles",
"build": "npm install && node swagger.js",
"start": "node server.js",
"dev": "nodemon server.js",
"swagger-autogen": "node ./swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamulrich/DanceCardBackend.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-openid-connect": "^2.12.0",
"mongodb": "^4.13.0",
"mongoose": "^6.9.0",
"mongoose-to-swagger": "^1.4.0",
"morgan": "^1.10.0",
"node": "^18.13.0",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"nodemon": "^2.0.20",
"jest": "^29.4.3",
"supertest": "^6.3.3"
},
"bugs": {
"url": "https://github.com/adamulrich/DanceCardBackend/issues"
},
"homepage": "https://github.com/adamulrich/DanceCardBackend#readme"
}