This repository was archived by the owner on Oct 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.43 KB
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
{
"name": "reverse-api-proxy",
"version": "1.0.0",
"description": "API proxy for Integration services, used by MeshHouse application",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon -e ts --exec \"npm run dev-build\"",
"dev-build": "tsc && npm run start",
"build": "tsc",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Meshhouse/reverse-api-proxy.git"
},
"author": {
"name": "Maxim Makarov",
"url": "https://github.com/longsightedfilms"
},
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"date-fns": "^2.17.0",
"dotenv": "^10.0.0",
"fastify": "^3.5.1",
"fastify-caching": "^6.0.1",
"fastify-cors": "^4.1.0",
"fastify-sensible": "^3.0.1",
"form-data": "^3.0.0",
"got": "^11.7.0",
"nodemon": "^1.17.5",
"pino-pretty": "^4.3.0",
"sanitize-html": "^2.1.0",
"set-cookie-parser": "^2.4.6",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.22",
"@types/node": "^10.5.1",
"@types/sanitize-html": "^1.27.0",
"@types/tough-cookie": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"typescript": "^4.0.3"
},
"bugs": {
"url": "https://github.com/Meshhouse/reverse-api-proxy/issues"
},
"homepage": "https://github.com/Meshhouse/reverse-api-proxy#readme"
}