-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "@cabindao/topo",
"version": "0.8.5",
"description": "Components for the CabinDAO design system",
"main": "index.js",
"module": "lib/index.js",
"types": "lib/components/index.d.ts",
"license": "MIT",
"private": false,
"scripts": {
"dev": "yarn storybook",
"storybook": "start-storybook -p 6006",
"build": "build-storybook -o public",
"lint": "eslint . --ext .ts,.tsx",
"prebuild:npm": "npm run lint",
"build:npm": "rollup -c",
"component": "hygen component new"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^6.4.1",
"@storybook/addon-essentials": "^6.4.1",
"@storybook/addon-links": "^6.4.1",
"@storybook/react": "^6.4.1",
"@svgr/rollup": "^6.2.1",
"@svgr/webpack": "5.5.0",
"@types/react": "^17.0.37",
"@types/react-portal": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-loader": "^8.2.3",
"eslint": "^8.7.0",
"postcss": "^8.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.60.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.5.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@radix-ui/react-checkbox": "^0.1.4",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-radio-group": "^0.1.5",
"@radix-ui/react-tooltip": "^0.1.7",
"@stitches/react": "^1.2.8",
"hygen": "^6.1.0",
"react-portal": "^4.2.1"
},
"files": ["/lib"]
}