-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 817 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 817 Bytes
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
{
"name": "jss-proxy-cache-middleware",
"version": "1.0.0",
"description": "A cache middleware for express when using Headless Sitecore JSS",
"main": "src/index.js",
"scripts": {
"start:proxy": "node test/test-server.js"
},
"engines": {
"node": ">=8.1",
"npm": ">=5.6.0",
"yarn": "yarn is not supported, please use npm"
},
"author": {
"name": "Kyle Kingsbury",
"url": "https://kylekingsbury.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kkings/jss-proxy-cache-middleware.git"
},
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"memory-cache": "^0.2.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
}
}