-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "@hfour/nestjs-json-rpc",
"version": "4.4.0",
"description": "JSON-RPC module for NestJS framework",
"author": "hfour",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublish": "tsc -p tsconfig.json",
"prettier:check": "prettier --no-color --check \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "yarn prettier:check && jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.5.1",
"@nestjs/microservices": "^7.5.5",
"@nestjs/platform-express": "^7.5.5",
"@nestjs/testing": "^7.4.4",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/supertest": "^2.0.7",
"jest": "^25.1.0",
"prettier": "^1.15.3",
"rxjs": "^6.0.0",
"supertest": "^6.0.1",
"ts-jest": "25.2.1",
"ts-node": "8.6.2",
"typescript": "3.8.3"
},
"peerDependencies": {
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.5.1",
"@nestjs/microservices": "^7.5.5",
"@nestjs/platform-express": "^7.5.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}