-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.16 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
{
"name": "@ciscode/ui-authentication-kit",
"version": "1.0.15",
"description": "",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rm -rf dist coverage",
"build": "vite build && tsc",
"dev": "vite",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"verify": "npm run lint && npm run typecheck && npm run test:cov",
"prepublishOnly": "npm run verify && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/CISCODE-MA/AuthKit-UI"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"@ciscode/ui-translate-core": "^1.0.0",
"axios": "^1.8.4",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.481.0",
"react": ">=18.0.0 <20.0.0 || ^19.0.0",
"react-cookie": "^8.0.1",
"react-dom": ">=18.0.0 <20.0.0 || ^19.0.0",
"react-router": "^7.0.0",
"react-router-dom": "^7.0.0"
},
"overrides": {
"follow-redirects": ">=1.15.12"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"axios": ">=1.14.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.0",
"jsdom": "^24.1.3",
"postcss": "^8.5.2",
"prettier": "^3.8.3",
"react-router": "^7.13.0",
"react-router-dom": "^7.13.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.58.2",
"vite": "^4.5.9",
"vitest": "^2.1.8"
}
}