-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 861 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
35
36
37
38
{
"name": "apiproxy",
"version": "1.0.0",
"description": "API Proxy, monitor and protocol transaltor",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"test": "jest",
"test-c": "jest --coverage",
"dev": "nodemon src/index.ts",
"build": "tsc -p ."
},
"keywords": [
"proxy",
"api"
],
"author": "[email protected]",
"license": "GPL",
"dependencies": {
"@types/morgan": "^1.9.3",
"axios": "^0.26.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"morgan-body": "^2.6.6",
"typescript": "^4.6.2",
"winston": "^3.6.0"
},
"devDependencies": {
"@jest-mock/express": "^1.4.5",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0"
}
}