forked from BloomTech-Labs/video-journal-for-teams-be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.73 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
60
61
62
63
64
65
66
67
{
"name": "video-journal-for-teams-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.628.0",
"bcrypt": "^3.0.7",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.4",
"knex-cleaner": "^1.3.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.15.1",
"shortid": "^2.2.15"
},
"devDependencies": {
"cross-env": "^7.0.0",
"insomnia-documenter": "^0.3.2",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"scripts": {
"server": "nodemon index.js",
"start": "node index.js",
"test": "cross-env DB_ENV=testing jest --watchAll --runInBand",
"test:coverage": "cross-env DB_ENV=testing jest --watchAll --verbose --runInBand --coverage",
"test:badges": "yarn test:coverage && jest-coverage-badges",
"db:test:seed": "cross-env NODE_ENV=testing knex seed:run",
"db:test:migrate": "cross-env NODE_ENV=testing knex migrate:latest",
"coverage": "jest --coverage --detectOpenHandles --forceExit || true"
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/",
"/coverage/",
"/public/",
"/database/",
"/.github/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/video-journal-for-teams-be.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/video-journal-for-teams-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/video-journal-for-teams-be#readme"
}