-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 810 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 810 Bytes
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
{
"name": "proxyfi",
"version": "1.0.0",
"description": "HTTP sticky load balancer using key-value storage",
"main": "dist/index.js",
"scripts": {
"start": "cross-env NODE_ENV=dev ts-node src/index.ts",
"build": "tsc",
"test": "cross-env NODE_ENV=test ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"author": "",
"license": "ISC",
"repository": "https://github.com/pocketfi/proxyfi",
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"http-proxy": "^1.18.1",
"mongoose": "^5.13.12"
},
"devDependencies": {
"@types/http-proxy": "^1.17.7",
"@types/jasmine": "^3.5.9",
"@types/node": "^13.9.2",
"cross-env": "^7.0.2",
"eslint": "^8.1.0",
"eslint-plugin-import": "^2.20.1",
"jasmine": "^3.5.0",
"ts-node": "^8.7.0",
"typescript": "^3.9.10"
}
}