-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 990 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": "sms_management",
"version": "1.0.0",
"description": "SMS Management API",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/bin/www.js",
"build": "babel src -d dist",
"dev": "nodemon --watch src --delay 250ms --exec babel-node src/bin/www.js"
},
"author": "Jeremiah Olufayo",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-plugin-add-module-exports": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.11"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.1",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.1"
}
}