-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
80 lines (80 loc) · 2.08 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "memphis-dev",
"version": "1.3.2",
"description": "A powerful messaging platform for modern developers",
"exports": {
".": "./lib/index.js"
},
"typesVersions": {
"*": {
"*": [
"lib/index.d.ts"
]
}
},
"scripts": {
"prebuild": "rimraf lib",
"build": "nest build",
"test": "jest"
},
"author": "",
"license": "ISC",
"homepage": "https://memphis.dev",
"repository": {
"type": "git",
"url": "https://github.com/memphisdev/memphis.js.git"
},
"dependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/microservices": "^9.1.4",
"@nestjs/platform-express": "^9.0.0",
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"avro-js": "^1.11.2",
"dotenv": "^16.0.1",
"graphql": "^16.6.0",
"murmurhash": "^2.0.1",
"nats": "^2.17.0",
"prettier": "^2.7.1",
"protobufjs": "^7.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@tsconfig/node12": "^1.0.11",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.42",
"@types/uuid": "^8.3.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.0.0",
"typescript": "^4.7.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}