-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@random-guys/pro-vcs",
"version": "0.25.2",
"description": "Repo for implementing review requests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"watch": "tsc -w -p ./tsconfig.json",
"test": "jest --detectOpenHandles --runInBand --forceExit"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/random-guys/pro-vcs.git"
},
"bugs": {
"url": "https://github.com/random-guys/pro-vcs/issues"
},
"files": [
"dist/"
],
"homepage": "https://github.com/random-guys/pro-vcs#readme",
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/bunyan": "^1.8.6",
"@types/deep-diff": "^1.0.0",
"@types/faker": "^4.1.12",
"@types/ioredis": "^4.0.13",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.3.7",
"@types/lodash": "^4.14.136",
"@types/mongoose": "^5.5.18",
"@types/sinon": "^9.0.4",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.6",
"dotenv": "^8.2.0",
"faker": "^4.1.0",
"jest": "^26.0.1",
"sinon": "^9.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"@random-guys/bucket": "^0.10.0",
"@random-guys/eventbus": "^2.0.1",
"@random-guys/iris": "^1.1.1",
"@random-guys/pro-request-router": "^0.12.0",
"@random-guys/siber": "^0.14.1",
"amqplib": "^0.5.5",
"bunyan": "^1.8.12",
"deep-diff": "^1.0.2",
"ioredis": "^4.14.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.7.1",
"reflect-metadata": "^0.1.13"
}
}