forked from abusix/hailstorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.6 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 4.6 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@abusix/hailstorm",
"version": "6.0.0-beta.2",
"description": "our own design/component library",
"homepage": "https://github.com/marklearst/hailstorm",
"author": "abusix",
"license": "ISC",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.27.0",
"repository": {
"type": "git",
"url": "git+https://github.com/marklearst/hailstorm.git"
},
"bugs": {
"url": "https://github.com/marklearst/hailstorm/issues"
},
"scripts": {
"dev": "pnpm run storybook",
"storybook": "STORYBOOK_CONFIG_DIR=.storybook storybook dev -p 6006",
"clean": "rimraf ./dist",
"type-check": "tsc --project tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"scripts/**/*.{js,mjs}\" \".storybook/**/*.{ts,tsx}\" \"*.{js,mjs,ts,tsx}\"",
"lint:write": "eslint \"src/**/*.{ts,tsx}\" \"scripts/**/*.{js,mjs}\" \".storybook/**/*.{ts,tsx}\" \"*.{js,mjs,ts,tsx}\" --fix",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"verify": "pnpm run format:check && pnpm run lint && pnpm run type-check && pnpm run test",
"build": "pnpm run clean && pnpm run build:rollup && pnpm run build:tailwind",
"build:rollup": "NODE_ENV=production rollup -c",
"build:icons": "svgr -- assets/icons",
"build-storybook": "storybook build && NODE_ENV=production tailwindcss -o ./dist/styles/index.css --minify",
"build:storybook": "storybook build",
"build:tailwind": "NODE_ENV=production tailwindcss -o ./dist/styles/index.css --minify"
},
"dependencies": {
"@floating-ui/react": "^0.27.16",
"@headlessui/react": "^2.2.9",
"@headlessui/tailwindcss": "^0.2.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.17",
"@tanstack/table-core": "^8.21.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@storybook/addon-a11y": "10.1.11",
"@storybook/addon-designs": "11.1.1",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-links": "^10.1.11",
"@storybook/addon-vitest": "^10.1.11",
"@storybook/react": "^10.1.11",
"@storybook/react-vite": "^10.1.11",
"@svgr/cli": "8.1.0",
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "^16.3.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "8.52.0",
"@typescript-eslint/parser": "8.52.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser": "^4.0.16",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"babel-loader": "^10.0.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-storybook": "^10.1.11",
"eslint-plugin-tsdoc": "0.5.0",
"globals": "17.0.0",
"jsdom": "^27.4.0",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "0.7.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"rimraf": "^6.1.2",
"rollup": "^4.55.1",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"semantic-release": "^25.0.2",
"storybook": "^10.1.11",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.16"
},
"pnpm": {
"overrides": {
"serialize-javascript": "^6.0.2",
"esbuild": "^0.25.0",
"brace-expansion@<=1.1.11": "1.1.12"
}
},
"peerDependencies": {
"react": "19.2.3",
"react-dom": "19.2.3"
}
}