-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "@torii-auth/authorization",
"version": "0.1.1",
"description": "ABAC Library for typescript.",
"repository": {
"url": "https://github.com/Lembre-me/Torii.git"
},
"keywords": ["abac", "typescript", "Torii", "authorization", "policy", "nodejs", "authentication", "jwt"],
"scripts": {
"test": "vitest",
"dev": "tsnd -r dotenv/config --transpile-only --respawn --ignore-watch node_modules ./index.ts",
"build": "tsc -p ."
},
"author": "Alexandre Ramos",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.13",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.20",
"@types/uuid": "^8.3.4",
"@vitest/ui": "^0.25.7",
"dotenv": "^16.0.0",
"serverless-dotenv-plugin": "^3.12.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5",
"vitest": "^0.25.7"
},
"main": "index.js"
}