-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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": "quizza-api",
"version": "1.0.0",
"description": "API for quizza.live",
"main": "src/app.js",
"scripts": {
"dev": "nodemon --exec babel-node src/app.js",
"build": "babel src -d dist",
"start": "npm run build && node dist/app.js",
"serve": "node dist/app.js"
},
"keywords": [
"quiz",
"app"
],
"author": "Olamide Aboyeji",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.5.5",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.5",
"mongoose": "^5.12.2",
"nanoid": "^2.1.11",
"nodemailer": "^6.5.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/runtime": "^7.13.10",
"morgan": "^1.10.0",
"nodemon": "^1.19.4"
}
}