-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.57 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
{
"name": "@hobbescodes/tigris-ui",
"version": "0.2.0",
"description": "a reusable design system and composible component library",
"author": "hobbescodes",
"license": "MIT",
"main": "build/ui.js",
"module": "build/ui.mjs",
"types": "build/ui.d.ts",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/hobbescodes/tigris-ui"
},
"exports": {
".": {
"types": "./build/ui.d.ts",
"require": "./build/ui.js",
"import": "./build/ui.mjs"
},
"./index.css": "./build/ui.css"
},
"keywords": [
"bun",
"panda",
"ark"
],
"scripts": {
"prepare": "husky install",
"dev": "panda codegen && concurrently --kill-others -n \"PANDA,STORYBOOK\" -c \"#ffc83d,#ff4785\" \"bun dev:css\" \"bun storybook\"",
"dev:css": "panda --watch",
"build": "panda codegen && tsup",
"format": "prettier . --write",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"test": "test-storybook",
"test:coverage": "bun run test --coverage",
"test:ci": "concurrently --kill-others -s first -n \"STORYBOOK,TEST\" -c \"#ff4785,#45ba4b\" \"bunx http-server storybook-static --port 6006 --silent\" \"bunx wait-on tcp:127.0.0.1:6006 && bun test:coverage --ci\"",
"test:watch": "bun run test --watch",
"storybook": "storybook dev --quiet --no-open -p 6006",
"storybook:build": "panda codegen && storybook build",
"release": "bun run build && changeset publish"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@ark-ui/anatomy": "^1.2.0",
"@ark-ui/react": "^1.2.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/types": "^18.4.3",
"@omnidev/knit": "^0.1.2",
"@pandacss/dev": "^0.23.0",
"@pandacss/types": "^0.23.0",
"@storybook/addon-a11y": "^7.6.6",
"@storybook/addon-coverage": "^1.0.0",
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.6.6",
"@storybook/jest": "^0.2.3",
"@storybook/manager-api": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/react-vite": "^7.6.6",
"@storybook/test-runner": "^0.16.0",
"@storybook/testing-library": "^0.2.2",
"@testing-library/dom": "^9.0.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.46",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"concurrently": "^8.2.2",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.1.0",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"framer-motion": "^10.16.16",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"storybook": "^7.6.6",
"storybook-dark-mode": "^3.0.3",
"tsup": "^8.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.3",
"wait-on": "^7.2.0"
}
}