-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.37 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@auth0/universal-components-web",
"version": "1.0.0",
"description": "Auth0 Universal Components",
"private": true,
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"build": "turbo run build",
"build:docs": "turbo run build --filter=auth0-ui-components-docs",
"build:shadcn": "pnpm registry:workflow",
"registry:generate": "pnpm --filter @auth0/universal-components-react registry:generate",
"registry:generate:interactive": "pnpm --filter @auth0/universal-components-react registry:generate:interactive",
"registry:generate:dry-run": "pnpm --filter @auth0/universal-components-react registry:generate:dry-run",
"registry:validate": "pnpm --filter @auth0/universal-components-react registry:validate",
"registry:build": "pnpm --filter @auth0/universal-components-react registry:build",
"registry:workflow": "pnpm --filter @auth0/universal-components-react registry:workflow",
"dev:docs": "turbo run dev --filter=auth0-ui-components-docs",
"docs:api": "typedoc",
"test": "turbo run test:coverage",
"test:core": "turbo run test:coverage --filter=./packages/core",
"test:react": "turbo run test:coverage --filter=./packages/react",
"test:watch": "turbo run test:watch",
"test:core:watch": "turbo run test:watch --filter=./packages/core",
"test:react:watch": "turbo run test:watch --filter=./packages/react",
"test:coverage": "vitest run --coverage",
"test:coverage:sonar": "vitest run --coverage --reporter=verbose --reporter=junit --outputFile=coverage/junit.xml",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\" --ignore-path .prettierignore",
"commit": "cz",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"packageManager": "pnpm@10.6.5",
"pnpm": {
"overrides": {
"react": "19.2.1",
"react-dom": "19.2.1",
"@isaacs/brace-expansion": ">=5.0.1",
"minimatch": ">=10.2.3",
"@vercel/static-config>ajv": ">=8.18.0",
"tar": ">=7.5.11",
"undici": ">=7.24.0",
"rollup": ">=4.59.0",
"qs": ">=6.14.2",
"@modelcontextprotocol/sdk": ">=1.26.0",
"brace-expansion": ">=5.0.5",
"path-to-regexp": ">=8.4.0",
"picomatch": ">=4.0.4",
"lodash": ">=4.18.1"
}
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^8.57.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.3.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"tsup": "^8.5.1",
"turbo": "^2.6.1",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}