-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 KB
/
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
37
38
39
40
41
42
43
{
"name": "gif-be",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --verbose --runInBand",
"test:watch": "npm run test -- --watch",
"start": "node server.js",
"start:watch": "nodemon server.js",
"lint": "eslint .",
"create-tables": "node data/create-tables.js",
"drop-tables": "node data/drop-tables.js",
"load-seed-data": "node data/load-seed-data.js",
"recreate-tables": "npm run drop-tables && npm run create-tables",
"setup-db": "npm run recreate-tables && npm run load-seed-data",
"setup-db:prod": "heroku run npm run setup-db",
"setup-heroku": "heroku addons:create heroku-postgresql:hobby-dev && heroku config:set PGSSLMODE=require && heroku config:get DATABASE_URL"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.15",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"supertest": "^6.0.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"superagent": "^6.1.0"
}
}