-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "user-graph",
"version": "1.0.0",
"description": "User Graph service",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node build/index.js",
"build": "tsc",
"test": "jest --watchAll --runInBand --forceExit",
"singletest": "jest --runInBand --forceExit",
"updateCommon": "npm uninstall @rhime/common && npm install @rhime/common",
"updateDiscovery": "npm uninstall @rhime/discovery && npm install @rhime/discovery",
"updateEvents": "npm uninstall @rhime/events && npm install @rhime/events"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/test/setup.ts"
],
"testTimeout": 100000
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@types/cookie": "^0.5.1",
"@types/cookie-signature": "^1.0.4",
"@types/jest": "^29.0.2",
"@types/supertest": "^2.0.12",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.16",
"@types/uuid": "^8.3.4",
"cookie": "^0.5.0",
"cookie-signature": "^1.2.0",
"jest": "^29.0.3",
"supertest": "^6.2.4",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@rhime/common": "^1.0.24",
"@rhime/events": "^1.0.21",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.2.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.9.1",
"nats": "^2.8.0",
"pino-http": "^8.2.0",
"pino-pretty": "^9.1.0",
"uuid": "^9.0.0"
}
}