-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.54 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": "@luxuryescapes/router",
"version": "2.5.33",
"description": "Wrapper around express router that provides validation and documentation out of the box",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"routerGenerateTypes": "generate-types.js"
},
"scripts": {
"test": "jest",
"lint": "standard | snazzy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandsExclusive/router.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/brandsExclusive/router/issues"
},
"homepage": "https://github.com/brandsExclusive/router#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.27",
"@types/node": "^17.0.8",
"express": "^4.17.1",
"jest": "^27.5.1",
"openapi-schema-validator": "^9.3.1",
"qs": "^6.10.3",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"supertest": "^6.2.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"express": "^4.17.1"
},
"dependencies": {
"@luxuryescapes/lib-types": "^1.16.15",
"@luxuryescapes/strummer": "^2.11.3",
"@sentry/node": "^6.17.4",
"lodash.omit": "^4.5.0",
"openapi-typescript": "^4.4.0",
"swagger-ui-express": "^4.5.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach",
"jest",
"expect"
],
"ignore": [
"index.d.ts"
]
},
"engines": {
"node": ">=14.17.0"
}
}