-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 949 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": "falcon-backend",
"version": "1.0.0",
"description": "API for falcon application",
"main": "app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon app.js",
"sequelize": "./node_modules/.bin/sequelize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soft-init/falcon-backend.git"
},
"author": "Soft Init",
"license": "ISC",
"bugs": {
"url": "https://github.com/soft-init/falcon-backend/issues"
},
"homepage": "https://github.com/soft-init/falcon-backend#readme",
"dependencies": {
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"hbs": "^4.0.1",
"jsonwebtoken": "^8.4.0",
"morgan": "^1.9.1",
"nodemon": "^1.18.9",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.7.1",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.4.0"
}
}