-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "ghost-bunnycdn-middleware",
"version": "1.2.1",
"description": "A middleware between a Ghost CMS instance and BunnyCDN, supposed to run in a Docker stack, alongside a Ghost container.",
"main": "dist/index.js",
"author": "Jannis Fedoruk-Betschki <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/magicpages/ghost-bunnycdn-perma-cache-purger"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "20.14.8",
"tsc-watch": "6.2.0",
"typescript": "5.5.2"
},
"dependencies": {
"@types/http-proxy": "^1.17.14",
"@types/http-proxy-middleware": "^1.0.0",
"@types/multer": "^1.4.11",
"dotenv": "16.4.5",
"express": "4.19.2",
"form-data": "^4.0.0",
"http-proxy": "^1.18.1",
"multer": "^1.4.5-lts.1",
"node-fetch": "3.3.2",
"p-limit": "^6.1.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node dist/index.js\""
}
}