-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
{
"name": "be-F4N",
"version": "1.0.0",
"description": "# Favour4aNeighbour API",
"main": "app.js",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^8.12.1",
"jest-sorted": "^1.0.6",
"knex": "^0.21.1",
"pg": "^8.2.1"
},
"devDependencies": {
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint": "^7.2.0",
"jest-sorted": "^1.0.6",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
},
"scripts": {
"create-db": "psql -f ./db/setup.sql",
"create-db-migration": "knex migrate:make",
"migrate-db-latest": "knex migrate:latest",
"migrate-db-rollback": "knex migrate:rollback",
"seed-dev": "npm run create-db && knex seed:run",
"seed:prod": "NODE_ENV=production DB_URL=$(heroku config:get DATABASE_URL) knex seed:run",
"migrate-latest:prod": "NODE_ENV=production DB_URL=$(heroku config:get DATABASE_URL) knex migrate:latest",
"migrate-rollback:prod": "NODE_ENV=production DB_URL=$(heroku config:get DATABASE_URL) knex migrate:rollback",
"test": "jest",
"start": "node listen.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kathrynr22/be-F4N.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kathrynr22/be-F4N/issues"
},
"homepage": "https://github.com/kathrynr22/be-F4N#readme",
"jest": {
"setupFilesAfterEnv": [
"jest-sorted"
]
}
}