-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.3 KB
/
package.json
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
105
106
{
"name": "@howso/howso-engine-react-display-components",
"version": "0.0.0",
"description": "Provides display components for React Tailwind Flowbite applications",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup --config",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx src/ --color",
"prebuild": "rimraf lib/*",
"pre-commit": "lint-staged",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collect-coverage",
"storybook": "storybook dev -p 6006",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/howsoai/howso-engine-react-display-components"
},
"contributors": [
"Lance Gliser <lance.gliser@howso.com>"
],
"license": "ISC",
"files": [
"lib"
],
"peerDependencies": {
"@hookform/error-message": "^2.0.1",
"@howso/react-tailwind-flowbite-components": "^6.1.0",
"@howso/ui-internationalization-utils": "^1.0.5",
"jotai": "^2.8.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.51.5",
"react-i18next": "^14.1.2",
"react-icons": "^5.2.1",
"tailwind-merge": "^2.2.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.0",
"@fontsource/inter": "^5.0.5",
"@hookform/error-message": "^2.0.1",
"@howso/engine": "^6.0.0",
"@howso/react-tailwind-flowbite-components": "^6.1.0",
"@howso/ui-internationalization-utils": "^1.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-a11y": "^8.3.6",
"@storybook/addon-actions": "^8.3.6",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-mdx-gfm": "^8.3.6",
"@storybook/blocks": "^8.3.6",
"@storybook/react": "^8.3.6",
"@storybook/react-vite": "^8.3.6",
"@storybook/test": "^8.3.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.14",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-storybook": "^0.10.1",
"husky": "^7.0.4",
"i18next-browser-languagedetector": "^8.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-transform-stub": "^2.0.0",
"jotai": "^2.8.3",
"lint-staged": "^11.2.3",
"postcss-nesting": "^12.1.5",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.5",
"react-i18next": "^14.1.2",
"react-icons": "^5.2.1",
"react-router-dom": "^6.14.1",
"rollup": "^4.12.1",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.3.6",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"typescript": "^5.5.2",
"vite": "^5.4.6",
"vite-plugin-eslint": "^1.8.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}