-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.33 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "express-bookshelf-realworld-example-app",
"private": true,
"version": "1.0.0",
"license": "MIT",
"author": "Tane Morgan (https://github.com/tanem)",
"description": "RealWorld example app using Express and Bookshelf.",
"scripts": {
"check:format": "prettier --list-different .",
"format": "prettier --write .",
"lint": "eslint .",
"test": "bin/test.sh",
"start": "bin/start.sh",
"db:truncate": "bin/truncate.js",
"docker:db:truncate": "docker-compose exec node npm run db:truncate",
"docker:test": "docker-compose -f docker-compose.yml -f docker-compose.test.yml run node npm run test",
"docker:start": "docker-compose -f docker-compose.yml -f docker-compose.development.yml up"
},
"dependencies": {
"@hapi/boom": "9.1.2",
"async-error-catcher": "1.2.0",
"bcrypt": "5.0.1",
"body-parser": "1.19.0",
"bookshelf": "1.2.0",
"bookshelf-virtuals-plugin": "1.0.0",
"checkit": "0.7.0",
"convict": "6.1.0",
"convict-format-with-validator": "6.0.1",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"express": "4.17.1",
"express-interceptor": "1.2.0",
"express-pino-logger": "6.0.0",
"helmet": "4.6.0",
"jsonwebtoken": "8.5.1",
"knex": "0.95.4",
"lodash": "4.17.21",
"passport": "0.4.1",
"passport-anonymous": "1.0.1",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"pg": "8.6.0",
"pino": "6.11.3",
"pino-pretty": "4.8.0",
"require-directory": "2.1.1",
"serve-favicon": "2.5.0",
"slug": "5.0.1",
"uuid": "8.3.2"
},
"devDependencies": {
"add-matchers": "0.6.2",
"chance": "1.1.7",
"coveralls": "3.1.0",
"eslint": "7.26.0",
"eslint-plugin-jest": "24.3.6",
"jest": "26.6.3",
"moment": "2.29.1",
"nodemon": "2.0.7",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"supertest": "6.1.3"
},
"jest": {
"coverageDirectory": "<rootDir>/_coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/config/"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"globalSetup": "<rootDir>/test-support/global-setup.js",
"globalTeardown": "<rootDir>/test-support/global-teardown.js",
"setupFilesAfterEnv": [
"<rootDir>/test-support/setup-test-framework.js"
],
"testEnvironment": "<rootDir>/test-support/test-environment.js"
}
}