-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "@webf/identity",
"version": "0.1.0",
"description": "IAM system built on top of Postgres",
"type": "module",
"scripts": {
"check:types": "npm run check:types --workspaces",
"build": "npm run build --workspaces",
"dev:pack": "tsx ./scripts/pack.ts",
"test:auth": "npm run test -w packages/auth",
"test:db:setup": "npm run test:db:setup -w packages/auth",
"test:db:teardown": "npm run test:db:teardown -w packages/auth"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webf-run/identity.git"
},
"license": "SEE LICENSE IN LICENSE",
"keywords": [],
"workspaces": [
"packages/auth",
"packages/hono"
],
"devDependencies": {
"@dotenvx/dotenvx": "^0.38.0",
"@types/madge": "^5.0.3",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"glob": "^10.3.15",
"madge": "^7.0.0",
"rimraf": "^5.0.7",
"tsx": "^4.10.0",
"typescript": "^5.4.5"
},
"dependencies": {
"zod": "^3.23.8"
},
"volta": {
"node": "22.2.0"
}
}