forked from getjerry/nest-casl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.35 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "nest-casl",
"version": "1.6.6",
"description": "Access control for Nestjs with CASL",
"author": "Denis Grankin @ Jerry",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/getjerry/nest-casl/issues"
},
"homepage": "https://github.com/getjerry/nest-casl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/getjerry/nest-casl.git"
},
"keywords": [
"authorization",
"authz",
"nest",
"nestjs",
"casl"
],
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --cache .",
"test": "jest",
"test:ci": "jest --runInBand",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@casl/ability": "^6.0.0",
"@ucast/core": "^1.10.1",
"@ucast/mongo": "^2.4.2",
"@ucast/mongo2js": "^1.3.3",
"@ucast/sql": "^1.0.0-alpha.1"
},
"peerDependencies": {
"@nestjs/apollo": ">= 7.0.0",
"@nestjs/common": ">= 7.0.0",
"@nestjs/core": ">= 7.0.0",
"@nestjs/graphql": ">= 7.0.0"
},
"peerDependenciesMeta": {
"@nestjs/apollo": {
"optional": true
},
"@nestjs/graphql": {
"optional": true
}
},
"devDependencies": {
"@nestjs/apollo": "^10.0.22",
"@nestjs/common": "^9.4.0",
"@nestjs/core": "^9.4.0",
"@nestjs/graphql": "^10.0.22",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/testing": "^9.4.0",
"@swc/core": "^1.2.245",
"@swc/jest": "^0.2.22",
"@types/jest": "^29.0.0",
"@types/node": "^20.3.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.18.1",
"graphql": "^16.6.0",
"jest": "^29.0.1",
"prettier": "^3.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.5.6",
"semantic-release": "^22.0.0",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}