-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
105 lines (105 loc) · 3.22 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
{
"name": "@yobgob/too-many-hooks",
"version": "0.0.1",
"description": "Collection of typed React hooks",
"repository": {
"type": "git",
"url": "https://github.com/yobgob/too-many-hooks"
},
"keywords": [
"react",
"hooks",
"typescript"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/too-many-hooks.umd.cjs",
"module": "./dist/too-many-hooks.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/too-many-hooks.js",
"require": "./dist/too-many-hooks.umd.cjs"
}
},
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json && vite build",
"storybook": "bun run build && storybook dev -p 6006",
"build-storybook": "bun run build && storybook build",
"test": "test-storybook --stories-json",
"lint:format:base": "prettier --check",
"lint:code:base": "eslint --max-warnings=0",
"lint:format": "./run-on-changed.sh 'bun lint:format:base'",
"lint:code": "./run-on-changed.sh 'bun lint:code:base'",
"lint:types": "tsc --noEmit",
"lint": "concurrently \"bun lint:format\" \"bun lint:code\" \"bun lint:types\"",
"lint:format:all": "bun lint:format:base .",
"lint:code:all": "bun lint:code:base .",
"lint:all": "concurrently \"bun lint:format:all\" \"bun lint:code:all\" \"bun lint:types\"",
"format:base": "prettier --write",
"format": "./run-on-changed.sh 'bun format:base'",
"format:all": "bun format:base ."
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@storybook/addon-docs": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/jest": "^0.2.3",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/test-runner": "^0.17.0",
"@storybook/testing-library": "^0.2.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"bun-types": "^1.0.20",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.13.0",
"mkdirp": "^3.0.1",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.9",
"storybook": "^8.0.9",
"tailwindcss": "^3.4.0",
"typescript": "^5.2.2",
"vite": "^5.0.10"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"@types/react": "^18",
"@types/react-dom": "^18"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
}