generated from BloomTech-Labs/template-be
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
53
54
55
56
57
58
59
{
"name": "foster-together-be",
"version": "1.0.0",
"description": "Express API using knex to connect to a PostgreSQL database for a React front end client.",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"start": "node index.js",
"test": "jest --runInBand --forceExit",
"watch": "jest --runInBand --detectOpenHandles",
"coverage": "knex migrate:latest --env test && knex seed:run --env test && jest --coverage --runInBand --detectOpenHandles --forceExit || true"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/__tests__/**",
"!**/data/**",
"!**/coverage/**",
"!**/*.test.js",
"!knexfile.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/foster-together-be.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/foster-together-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/foster-together-be#readme",
"dependencies": {
"@sendgrid/mail": "^6.5.5",
"@sentry/node": "^5.12.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"helmet": "^3.21.2",
"jest": "^25.1.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.15",
"knex-cleaner": "^1.3.0",
"morgan": "^1.9.1",
"pg": "^7.18.2",
"psql": "0.0.1",
"sqlite3": "^4.1.1",
"stripe": "^8.32.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}