-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "@bedrock/express",
"version": "8.3.2-0",
"type": "module",
"description": "Bedrock express module",
"license": "Apache-2.0",
"main": "./lib/index.js",
"scripts": {
"test": "node test.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/bedrock-express"
},
"keywords": [
"bedrock",
"express"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "http://digitalbazaar.com"
},
"bugs": {
"url": "https://github.com/digitalbazaar/bedrock-express/issues"
},
"homepage": "https://github.com/digitalbazaar/bedrock-express",
"dependencies": {
"@fastify/express": "^2.3.0",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"errorhandler": "^1.5.1",
"express": "^4.18.0",
"express-session": "^1.17.2",
"fastify": "^4.28.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0"
},
"peerDependencies": {
"@bedrock/core": "^6.0.0",
"@bedrock/server": "^5.0.0"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-digitalbazaar": "^5.2.0",
"eslint-plugin-jsdoc": "^48.5.0",
"jsdoc-to-markdown": "^8.0.1"
},
"engines": {
"node": ">=18"
}
}