forked from tanem/express-bookshelf-realworld-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.46 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
80
81
82
83
84
{
"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": {
"apitoolkit-js": "file:../apitoolkit-js",
"@hapi/boom": "10.0.0",
"async-error-catcher": "1.2.0",
"bcrypt": "5.0.1",
"body-parser": "1.20.0",
"bookshelf": "1.2.0",
"bookshelf-virtuals-plugin": "1.0.0",
"checkit": "0.7.0",
"convict": "6.2.3",
"convict-format-with-validator": "6.2.0",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"express": "4.18.1",
"express-interceptor": "1.2.0",
"express-pino-logger": "7.0.0",
"helmet": "5.1.1",
"jsonwebtoken": "8.5.1",
"knex": "0.21.21",
"lodash": "4.17.21",
"passport": "0.6.0",
"passport-anonymous": "1.0.1",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"pg": "8.7.3",
"pino": "8.4.2",
"pino-pretty": "9.0.1",
"require-directory": "2.1.1",
"serve-favicon": "2.5.0",
"slug": "6.0.0",
"uuid": "8.3.2"
},
"devDependencies": {
"add-matchers": "0.6.2",
"chance": "1.1.8",
"coveralls": "3.1.1",
"eslint": "8.22.0",
"eslint-plugin-jest": "26.8.7",
"jest": "28.1.3",
"jest-environment-node": "28.1.3",
"moment": "2.29.4",
"nodemon": "2.0.19",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"supertest": "6.2.4"
},
"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"
},
"engines": {
"npm": ">=8.0.0"
}
}