-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 930 Bytes
/
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
{
"name": "proxy",
"version": "1.0.0",
"main": "src/index.ts",
"license": "GPL-3.0-or-later",
"dependencies": {
"@types/express": "^4.17.7",
"@types/http-proxy": "^1.17.4",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"https": "^1.0.0",
"open": "^7.2.1",
"typescript": "^3.9.7"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"@types/open": "^6.2.1",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.2"
}
}