-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 944 Bytes
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
{
"name": "express-mongo-docker",
"version": "0.0.1",
"description": "Node.js + Express + Mongo application template",
"main": "index.js",
"scripts": {
"start": "export NODE_ENV=dev NODE_CONFIG_DIR=./src/config/ && babel-node --presets env src/app.js"
},
"keywords": [
"REST",
"API",
"Node.js",
"Express",
"MongoDB"
],
"author": "Dmitriy Braginets",
"dependencies": {
"amazon-cognito-identity-js": "^3.0.11",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"config": "^1.26.2",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.1",
"node-fetch": "^2.5.0",
"passport": "^0.4.0",
"pg": "^7.10.0",
"pg-hstore": "^2.3.2",
"request": "^2.88.0",
"sequelize": "^5.8.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.7.0"
}
}