-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
69 lines (69 loc) · 1.65 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
{
"name": "@toss/nestjs-aop",
"version": "2.1.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "esm/index.js",
"license": "MIT",
"engines": {
"node": ">=16",
"pnpm": "^8"
},
"scripts": {
"test": "jest --maxWorkers 4",
"build": "rm -rf dist esm && tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json"
},
"files": [
"esm",
"dist",
"src"
],
"peerDependencies": {
"@nestjs/common": "^8 || ^9 || ^10",
"@nestjs/core": "^8 || ^9 || ^10",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"rxjs": "^7.5.6"
},
"dependencies": {
"ramda": "^0.28.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@nestjs/common": "^10.3.9",
"@nestjs/core": "^10.3.9",
"@nestjs/platform-fastify": "^10.3.9",
"@nestjs/testing": "^10.3.9",
"@types/jest": "^29.5.7",
"@types/node": "^18.18.8",
"@types/ramda": "^0.28.25",
"@types/supertest": "^2.0.15",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"homepage": "https://github.com/toss/nestjs-aop",
"bugs": {
"url": "https://github.com/toss/nestjs-aop/issues"
},
"keywords": [
"nestjs-aop",
"nest-aop",
"aop",
"nestjs-lazy-decorator",
"lazy-decorator",
"toss",
"toss-nestjs"
],
"publishConfig": {
"access": "public"
}
}