-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1015 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": "express-api-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for my project REST Apis on the Web Development Top up. Uses: Express, Node, Mongodb, Mongoose, Typescript",
"main": "server.ts",
"scripts": {
"start-dev": "nodemon ./src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Kos3l",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^18.14.6",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cross-env": "^7.0.3",
"dotenv-flow": "^3.2.0",
"express": "^4.18.2",
"http-status": "^1.6.2",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.1.0",
"mongoose": "^7.0.0",
"swagger-ui-express": "^4.6.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/yamljs": "^0.2.31",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}