-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 843 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 843 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
{
"name": "nopdejs-express-postgres",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"start": "npm i && npm run migrate && npx nodemon ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "npx sequelize db:migrate"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.17.2",
"compose-middleware": "^2.2.0",
"dotenv": "^4.0.0",
"express": "^4.16.1",
"jwt-simple": "^0.5.1",
"morgan": "~1.10.0",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"pg": "^8.3.0",
"pg-hstore": "^2.3.2",
"sequelize": "^6.3.3"
},
"devDependencies": {
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0"
}
}