-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 984 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
37
38
39
40
41
42
{
"type": "commonjs",
"name": "noogabob",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx babel src --out-dir dist",
"dev": "nodemon",
"start": "node dist/index.js"
},
"keywords": [],
"author": "noogabob",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"nodemon": "^2.0.6"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"helmet": "^4.3.1",
"hpp": "^0.2.3",
"http-status-codes": "^2.1.4",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"short-uuid": "^4.1.0",
"swagger-jsdoc": "^6.0.0",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
}
}