-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.13 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.13 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
97
98
99
100
101
102
103
104
{
"name": "@ciscode/ui-widget-kit",
"version": "1.0.4",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"preview": "vite preview",
"dev:examples": "vite --config examples/vite.examples.config.ts",
"preview:examples": "vite preview --config examples/vite.examples.config.ts",
"build": "tsup && npm run build:assets",
"build:assets": "node -e \"require('fs').copyFileSync('src/assets/styles/style.css','dist/style.css')\"",
"build:css": "tailwindcss -i ./src/tailwind.css -o ./dist/tailwind.css --minify",
"test": "vitest --run",
"test:cov": "vitest --run --coverage",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"lint": "eslint -c eslint.config.mjs .",
"typecheck": "tsc --noEmit",
"type-check:watch": "tsc --noEmit -w",
"format": "prettier --check .",
"format:write": "prettier --write .",
"prepublishOnly": "npm run format && npm run lint && npm run typecheck && npm test && npm run build"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"@ciscode/ui-authentication-kit": "^1.0.13",
"@ciscode/ui-translate-core": "^1.0.0",
"react": ">=18.0.0 <20.0.0 || ^19.0.0",
"react-dom": ">=18.0.0 <20.0.0 || ^19.0.0",
"react-router": "^7.5.3",
"react-router-dom": "^7.5.3",
"react-select": "^5.10.2",
"zod": "^4.3.6"
},
"peerDependenciesMeta": {
"@ciscode/ui-authentication-kit": {
"optional": true
}
},
"devDependencies": {
"@ciscode/ui-authentication-kit": "^1.0.13",
"@ciscode/ui-translate-core": "^1.0.0",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.24",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^28.0.0",
"lint-staged": "^16.2.7",
"msw": "^2.12.10",
"playwright": "^1.58.2",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.5.3",
"react-router-dom": "^7.5.3",
"react-select": "^5.10.2",
"tailwindcss": "^4.1.18",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"zod": "^4.3.6"
},
"dependencies": {
"husky": "^9.1.7"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint -c eslint.config.mjs --fix",
"prettier --write"
],
"*.{json,md,css}": "prettier --write"
}
}