-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.04 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.04 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
56
57
58
59
{
"name": "bear-auth",
"version": "0.0.1",
"author": "Jiří Čermák <jiri.cermak@ackee.cz>",
"packageManager": "yarn@4.9.2+sha256.ca4310f8ba997b4643a000ce512d9772e01c1485df35511114b325315960acb7",
"private": true,
"engines": {
"node": "24"
},
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"tooling/*"
],
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.4.2",
"@tooling/eslint": "workspace:*",
"prettier": "3.5.3",
"turbo": "2.5.4"
},
"scripts": {
"cir-dep": "turbo run cir-dep --parallel",
"lint": "turbo run lint --parallel",
"lint:fix": "turbo run lint --parallel -- --fix",
"build": "turbo run build",
"release:prepare": "yarn build && yarn changeset",
"release:apply": "yarn changeset version && yarn changeset tag && yarn install",
"release:publish": "yarn changeset publish",
"prepare": "husky",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write . --cache --cache-strategy=content --cache-location=.cache/prettier --ignore-path .gitignore --ignore-unknown --log-level=warn",
"test": "vitest run --typecheck",
"test:dev": "vitest dev --typecheck",
"test:coverage": "vitest run --coverage --typecheck",
"e2e": "playwright test --reporter=line",
"e2e:dev": "playwright test --ui",
"e2e:gen": "playwright codegen"
},
"devDependencies": {
"@changesets/cli": "2.29.4",
"@playwright/test": "1.53.0",
"@vitest/coverage-v8": "3.2.3",
"@vitest/ui": "3.2.3",
"husky": "9.1.7",
"jsdom": "26.1.0",
"playwright": "1.53.0",
"vitest": "3.2.3"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/bear-auth"
},
"homepage": "https://github.com/AckeeCZ/bear-auth",
"bugs": {
"url": "https://github.com/AckeeCZ/bear-auth/issues"
}
}