-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "deepl-api-proxy",
"version": "1.0.0",
"description": "A lightweight Node.js server that acts as a proxy to the DeepL API",
"main": "index.js",
"scripts": {
"setup": "node scripts/setup.js",
"start": "node --no-deprecation index.js",
"docker:up": "PROXY_PORT=$(node scripts/get-port.js) docker-compose up",
"docker:up:build": "PROXY_PORT=$(node scripts/get-port.js) docker-compose up --build",
"docker:down": "PROXY_PORT=$(node scripts/get-port.js) docker-compose down",
"test": "npm run test:unit",
"test:unit": "node tests/run-unit-tests.js",
"test:integration": "node tests/health.test.js && node tests/cors.test.js",
"test:api": "node examples/run-api-tests.js",
"demo": "node examples/web-demo/server.js"
},
"keywords": [
"deepl",
"translation",
"proxy",
"cors",
"api",
"frontend",
"hackathon"
],
"author": "DeepL",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"express": "^5.1.0",
"http-proxy-middleware": "^3.0.5",
"multer": "^2.0.1"
},
"devDependencies": {
"axios": "^1.9.0",
"form-data": "^4.0.0"
}
}