-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
49
50
51
52
{
"name": "proxy",
"version": "1.4.6",
"description": "",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "ts-node -r dotenv/config -r tsconfig-paths/register src/main.ts",
"start:dev": "ts-node-dev -r dotenv/config -r tsconfig-paths/register src/main.ts",
"test": "jest --silent --maxWorkers=1",
"test:cov": "jest --silent --coverage --maxWorkers=1",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.16.17",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"ajv": "^8.12.0",
"dotenv": "^16.1.4",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.0.0"
},
"dependencies": {
"@azure/identity": "^1.3.0",
"@azure/keyvault-secrets": "^4.1.0",
"@google-cloud/secret-manager": "^3.6.0",
"compression": "^1.7.4",
"email-addresses": "^3.1.0",
"express": "^4.17.1",
"googleapis": "^67.0.0",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"path-to-regexp": "^6.2.0",
"proxy-agent": "^6.4.0",
"supertest": "^6.1.3",
"ts-custom-error": "^3.2.0"
}
}