-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 967 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
{
"name": "rabbitRedisTSDemo",
"version": "0.0.1",
"description": "",
"scripts": {
"start": "node bin/index",
"clean": "rimraf bin",
"test": "jest --no-cache",
"compile": "npx tsc --p src/tsconfig.json --strict --alwaysStrict",
"lint": "npx eslint . --ext .jsx,.ts,.tsx --fix",
"prettier": "npx prettier --write ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/amqplib": "^0.5.16",
"@types/bluebird": "^3.5.33",
"@types/jest": "^26.0.15",
"@types/redis": "^2.8.28",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "4.0.5"
},
"dependencies": {
"amqp-ts": "^1.8.0",
"redis": "^3.0.2"
}
}