-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "deepl-mock",
"description": "DeepL API mock server",
"version": "1.14.0",
"author": "DeepL SE <[email protected]>",
"license": "MIT",
"repository": "DeepLcom/deepl-mock",
"homepage": "https://www.deepl.com/",
"keywords": [
"deepl",
"http",
"mock",
"api"
],
"dependencies": {
"csv-parser": "^3.0.0",
"express": "^4.17.2",
"express-fileupload": "1.4.2",
"http-proxy": "^1.18.1",
"morgan": "^1.10.0",
"nocache": "^3.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.4"
},
"engines": {
"node": ">=14"
},
"files": [
"auth.js",
"CHANGELOG.md",
"documents.js",
"languages.js",
"LICENSE",
"index.js",
"README.md",
"sessions.js",
"util.js"
],
"scripts": {
"start": "DEEPL_MOCK_SERVER_PORT=${DEEPL_MOCK_SERVER_PORT:-3000} DEEPL_MOCK_PROXY_SERVER_PORT=${DEEPL_MOCK_PROXY_SERVER_PORT:-3001} node index.js",
"lint": "eslint .",
"lintfix": "eslint . --fix"
}
}