-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 961 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": "tvod-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "10.8.0"
},
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"knex": "knex",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"setup": "npm i && echo > .env && echo \"SECRET_KEY='secret' \nDATABASE_NAME='tvoddatabase'\" >> .env && npm run reboot && npm run dev",
"reboot": "npm run knex migrate:rollback && npm run knex migrate:latest && npm run knex seed:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"knex": "^0.19.5",
"morgan": "^1.9.1",
"nodemon": "^1.18.4",
"path": "^0.12.7",
"pg": "^7.4.3",
"shortid": "^2.2.13"
}
}