-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.74 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
{
"name": "with-webauthn",
"description": "A project with full-stack WebAuthn API examples.",
"packageManager": "[email protected]+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90",
"private": true,
"type": "module",
"engines": {
"node": "22"
},
"scripts": {
"postinstall": "turbo telemetry disable",
"build": "yarn workspace @workspace/common build && turbo run build --parallel",
"dev": "yarn workspace @workspace/common build && turbo run dev --concurrency 100%",
"cir-dep": "turbo run cir-dep --parallel",
"test:ci": "turbo run test:ci",
"lint": "turbo run lint --parallel",
"lint:fix": "turbo run lint --parallel -- --fix",
"format": "turbo run format --parallel",
"audit": "yarn npm audit --severity moderate --all",
"pre-commit": "prettier-format --staged --log-level=log && turbo run lint --parallel --force -- --staged --fix",
"prepare": "husky"
},
"workspaces": [
"examples/*",
"packages/*",
"tooling/*"
],
"dependencies": {
"@tooling/eslint": "workspace:*",
"@tooling/prettier": "workspace:*",
"@tooling/typescript": "workspace:*",
"dotenv": "16.4.7",
"husky": "9.1.7",
"turbo": "2.3.3"
},
"prettier": "@tooling/prettier/config",
"license": "GPL-3.0-only",
"author": {
"name": "Jiří Čermák"
},
"repository": {
"type": "git",
"url": "https://github.com/cermakjiri/with-webauthn"
},
"homepage": "https://with-webauthn.dev",
"bugs": {
"url": "https://github.com/cermakjiri/with-webauthn/issues"
}
}