-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.35 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
{
"author": "Alex McGovern",
"name": "boondoggle",
"description": "Boondoggle component library",
"version": "4.2.9",
"license": "MIT",
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/alex-mcgovern/boondoggle"
},
"source": "src/index.ts",
"types": "dist/types.d.ts",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "vite build",
"build:docs": "storybook build --docs -o docs",
"check": "conc \"npm:check:*\" -g -c \"auto\"",
"check:eslint": "eslint .",
"check:knip": "knip",
"check:prettier": "prettier . --check",
"check:tsc": "tsc",
"check:vitest": "vitest run --passWithNoTests",
"commit": "commit",
"cy:open": "cypress open",
"cy:run": "cypress run --component",
"fix": "npm run fix-prettier && npm run fix-eslint",
"fix-eslint": "eslint . --fix",
"fix-prettier": "prettier . --write",
"postversion": "git push --no-verify && git push --tags --no-verify",
"prepare": "husky",
"preversion": "npm run check",
"storybook": "storybook dev -p 6006",
"test:watch": "vitest --watch"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/pro-duotone-svg-icons": "6.5.1",
"@fortawesome/pro-solid-svg-icons": "6.5.1",
"@fortawesome/react-fontawesome": "0.2.0",
"@internationalized/date": "3.5.4",
"@radix-ui/colors": "3.0.0",
"@radix-ui/react-collapsible": "1.1.0",
"clsx": "2.1.1",
"react-aria-components": "1.2.1",
"react-hook-form": "7.52.1",
"sonner": "1.3.1"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@commitlint/prompt-cli": "19.3.1",
"@faker-js/faker": "8.4.1",
"@storybook/addon-essentials": "8.1.11",
"@storybook/blocks": "8.1.11",
"@storybook/builder-vite": "8.1.11",
"@storybook/manager-api": "8.1.11",
"@storybook/react": "8.1.11",
"@storybook/react-vite": "8.1.11",
"@storybook/theming": "8.1.11",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.0.0",
"@typescript-eslint/parser": "6.17.0",
"@vitejs/plugin-react-swc": "3.7.0",
"concurrently": "8.2.2",
"cypress": "13.13.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "48.5.0",
"eslint-plugin-perfectionist": "2.11.0",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.0.11",
"jsdom": "24.1.0",
"knip": "5.24.1",
"prettier": "3.3.2",
"react": "^18.3.1",
"storybook": "8.1.11",
"tslib": "2.6.3",
"typescript": "5.5.3",
"vite": "5.3.3",
"vite-plugin-dts": "3.9.1",
"vitest": "1.6.0",
"vitest-fail-on-console": "0.7.0"
}
}