-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 986 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
{
"name": "newsletter",
"version": "0.0.1",
"description": "A Newsletter microservice which handles subscriber",
"main": "index.js",
"scripts": {
"start": "node dist",
"dev": "nodemon -w src --exec \"babel-node src\"",
"build": "babel src -s -D -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "huhn511",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"nodemon": "^2.0.1"
},
"env": {
"node": true
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.7.12",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"resource-router-middleware": "^0.7.0"
}
}