-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 893 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 893 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
{
"name": "node-sequelize-rest-api",
"version": "0.0.0",
"description": "Rest api built with node.js using sequelize",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"author": "Arsalan Bilal <mabc224@gmail.com>",
"license": "MIT",
"repository": "https://github.com.org/mabc224/node-sequelize-rest-api",
"bugs": {
"url": "https://github.com/mabc224/node-sequelize-rest-api/issues"
},
"engines": {
"node": ">=7.6"
},
"devDependencies": {
"eslint": "~4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "~2.9.0"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "~1.18.2",
"express": "~4.16.3",
"express-validator": "^5.0.3",
"got": "^8.3.0",
"jsonwebtoken": "~8.2.0",
"morgan": "^1.9.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.36.1"
}
}