-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 4.14 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
107
108
109
110
111
112
113
114
115
116
{
"name": "@abusix/hailstorm",
"version": "5.8.1",
"description": "our own design/component library",
"homepage": "https://github.com/abusix/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": ">=20",
"npm": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abusix/hailstorm.git"
},
"bugs": {
"url": "https://github.com/abusix/hailstorm/issues"
},
"scripts": {
"dev": "npm run storybook",
"storybook": "storybook dev -p 6006",
"clean": "rimraf ./dist",
"type-check": "tsc --project tsconfig.json",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:write": "eslint src --ext .ts,.tsx --fix",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"build": "npm run clean && npm run build:rollup && npm run build:tailwind",
"build:rollup": "NODE_ENV=production rollup -c",
"build:icons": "svgr -- assets/icons",
"build:storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook build",
"build:tailwind": "NODE_ENV=production npx tailwindcss -o ./dist/styles/index.css --minify"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@headlessui/tailwindcss": "^0.2.1",
"@popperjs/core": "^2.11.8",
"@tailwindcss/forms": "^0.5.7",
"@tanstack/react-table": "^8.10.7",
"@tanstack/react-virtual": "^3.0.1",
"@tanstack/table-core": "^8.10.7",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-popper": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^8.2.4",
"@storybook/addon-interactions": "^8.2.4",
"@storybook/addon-links": "^8.2.4",
"@storybook/blocks": "^8.2.4",
"@storybook/preview-api": "^8.2.4",
"@storybook/react": "^8.2.4",
"@storybook/react-vite": "^8.2.4",
"@svgr/cli": "8.1.0",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.42",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.0.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"eslint": "8.55.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tsdoc": "0.2.17",
"jsdom": "^24.1.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "0.5.9",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.6.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"semantic-release": "^23.0.5",
"storybook": "^8.2.4",
"tailwind-merge": "^2.1.0",
"tailwindcss": "^3.3.6",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "^1.0.1"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
}
}