-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
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
{
"name": "starducks-server",
"version": "0.0.1",
"description": "Starducks Server",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "mocha --timeout 30000 --recursive --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damla/starducks-server.git"
},
"keywords": [
"ExpressJS",
"SwaggerUI"
],
"author": "Damla Koksal",
"license": "ISC",
"bugs": {
"url": "https://github.com/damla/starducks-server/issues"
},
"homepage": "https://github.com/damla/starducks-server#readme",
"dependencies": {
"mongodb": "^3.6.3",
"mongoose": "^6.0.12",
"dotenv": "^10.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^9.1.3"
}
}