-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
43
44
45
46
{
"name": "jwtBackendServer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel-node": "babel-node --presets=env",
"start": "nodemon --exec npm run babel-node src/index.js",
"build": "babel src -d dist --presets=env"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.2.1",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"cloudinary": "^1.11.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"csurf": "^1.9.0",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-fileupload": "^0.4.0",
"express-unless": "^0.5.0",
"helmet": "^3.12.0",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.0.11",
"mongoose-plugin-autoinc": "^1.1.9",
"raven": "^2.4.2",
"request": "^2.85.0",
"winston": "^2.4.1",
"winston-daily-rotate-file": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"nodemon": "^1.17.2"
},
"babel": {
"presets": [
"env"
]
}
}