-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "auth0-acul-samples",
"version": "1.0.0",
"description": "Auth0 Advanced Customizations for Universal Login Samples - Monorepo",
"private": true,
"scripts": {
"install:all": "npm install --workspaces",
"build:all": "npm run build --workspaces --if-present",
"test:all": "npm run test --workspaces --if-present",
"lint:all": "npm run lint --workspaces --if-present",
"lint:check": "npm run lint:check --workspaces --if-present",
"clean:all": "npm run clean --workspaces --if-present",
"validate-manifest": "node scripts/validate-manifest.js",
"ci": "npm run validate-manifest && npm run lint:check && npm run test:all && npm run build:all",
"prepare": "husky"
},
"workspaces": [
"react-js",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-samples/auth0-acul-samples.git"
},
"keywords": [
"auth0",
"acul",
"universal-login",
"authentication",
"react",
"typescript"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0-samples/auth0-acul-samples/issues"
},
"homepage": "https://github.com/auth0-samples/auth0-acul-samples#readme",
"dependencies": {
"@base-ui-components/react": "^1.0.0-beta.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.525.0",
"react": "19.1.2",
"react-dom": "19.1.2",
"react-hook-form": "^7.60.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"husky": "^9.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}