-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.58 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.58 KB
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
{
"name": "bunny-rest-proxy",
"version": "0.0.0",
"description": "REST Proxy for RabbitMQ",
"main": "src/index.ts",
"scripts": {
"dev": "tsc-watch --onSuccess \"node build/index.js\"",
"test": "jest --coverage --runInBand ./src",
"build": "tsc",
"prestart": "npm run build",
"pretest": "npm run build",
"start": "node build/index.js",
"fmt": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts"
},
"author": "Paweł Kuffel <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.11.0",
"fastify": "^3.27.4",
"fastify-amqp-async": "^1.0.1",
"fastify-error": "^1.0.0",
"fastify-graceful-shutdown": "^3.1.0",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.7",
"pino-pretty": "^7.6.1",
"prom-client": "^14.0.1"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/jest": "^27.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.6.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"jest-mock-extended": "^2.0.5",
"prettier": "^2.6.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.3"
}
}