-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
167 lines (167 loc) · 5.26 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "@aragon/gov-ui-kit",
"version": "1.0.53",
"description": "Implementation of the Aragon's Governance UI Kit",
"main": "dist/index.es.js",
"types": "dist/types/src/index.d.ts",
"license": "GPL-3.0",
"files": [
"dist",
"index.css",
"build.css",
"src/**/*.css",
"src/theme/fonts/*",
"tailwind.config.js"
],
"scripts": {
"setup": "husky",
"storybook": "storybook dev -p 6006",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"build:analyze": "cross-env ANALYZE=true rollup -c",
"build:storybook": "storybook build",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"prettify": "prettier . --check",
"prettify:fix": "prettier . --write",
"type-check": "tsc --noemit",
"deploy:storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aragon/gov-ui-kit.git"
},
"keywords": [
"aragon",
"design-system",
"governance-ui-kit",
"react",
"tailwind"
],
"author": "Aragon Association",
"dependencies": {
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-focus-scope": "^1.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.0",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@tiptap/extension-code-block": "^2.9.0",
"@tiptap/extension-image": "^2.9.0",
"@tiptap/extension-link": "^2.9.0",
"@tiptap/extension-placeholder": "^2.9.0",
"@tiptap/extension-text-style": "^2.9.0",
"@tiptap/pm": "^2.9.0",
"@tiptap/react": "^2.9.0",
"@tiptap/starter-kit": "^2.9.0",
"blockies-ts": "^1.0.0",
"classnames": "^2.0.0",
"framer-motion": "^11.11.0",
"luxon": "^3.5.0",
"react-dropzone": "^14.3.0",
"react-imask": "^7.6.1",
"sanitize-html": "^2.13.0",
"tiptap-markdown": "^0.8.10"
},
"peerDependencies": {
"@tailwindcss/typography": "^0.5.0",
"@tanstack/react-query": "^5.59.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.0",
"viem": "^2.21.0",
"wagmi": "^2.12.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@storybook/addon-designs": "^8.0.4",
"@storybook/addon-essentials": "^8.4.1",
"@storybook/addon-links": "^8.4.1",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.4.1",
"@storybook/react": "^8.4.1",
"@storybook/react-webpack5": "^8.4.1",
"@storybook/storybook-deployer": "^2.8.16",
"@svgr/rollup": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.59.19",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.4.2",
"@types/react-dom": "^18.3.1",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-testing-library": "^6.4.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.24.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.4.1",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"viem": "^2.21.40",
"wagmi": "^2.12.25"
},
"bugs": {
"url": "https://github.com/aragon/gov-ui-kit/issues"
},
"homepage": "https://github.com/aragon/gov-ui-kit#readme",
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"default": "./dist/index.es.js"
},
"./index.css": "./index.css",
"./build.css": "./build.css",
"./tailwind.config": "./tailwind.config.js"
},
"packageManager": "[email protected]"
}