-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 KB
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
{
"name": "auser",
"version": "0.1.0",
"description": "Edge Access Layer + Risk Engine + Passkey Challenge + SDK multi-lenguaje",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:edge-proxy\" \"npm run dev:api\" \"npm run dev:dash\"",
"dev:edge-proxy": "npm run dev --workspace=apps/edge-proxy",
"dev:api": "npm run dev --workspace=apps/api",
"dev:dash": "npm run dev --workspace=apps/dash",
"edge-proxy:dev": "npm run dev --workspace=apps/edge-proxy",
"edge-proxy": "npm start --workspace=apps/edge-proxy",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:ci": "npm run test --workspaces --if-present -- --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rblez/auser.git"
},
"keywords": [
"security",
"edge-proxy",
"risk-engine",
"webauthn",
"bot-detection"
],
"author": "Ray",
"license": "MIT",
"bugs": {
"url": "https://github.com/rblez/auser/issues"
},
"homepage": "https://github.com/rblez/auser#readme",
"devDependencies": {
"concurrently": "^9.2.1",
"eslint": "^10.2.0",
"prettier": "^3.8.3",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@upstash/redis": "^1.37.0"
}
}