-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "@yaldram/react-scss-chakra-ui",
"version": "0.0.1",
"description": "A chakra clone design-system using react, scss, class-variance-authority, only static sites, no css in js.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs"
},
"./dist/css/main.css": {
"import": "./dist/css/main.css"
}
},
"scripts": {
"build": "tsc && vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yaldram/react-scss-chakra-ui.git"
},
"keywords": [
"react",
"scss",
"class-variance-authority"
],
"author": "Arsalan Yaldram.",
"license": "ISC",
"bugs": {
"url": "https://github.com/yaldram/react-scss-chakra-ui/issues"
},
"homepage": "https://github.com/yaldram/react-scss-chakra-ui#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-essentials": "^7.0.0-rc.3",
"@storybook/addon-interactions": "^7.0.0-rc.3",
"@storybook/addon-links": "^7.0.0-rc.3",
"@storybook/blocks": "^7.0.0-rc.3",
"@storybook/react": "^7.0.0-rc.3",
"@storybook/react-vite": "^7.0.0-rc.3",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.57.1",
"storybook": "^7.0.0-rc.3",
"tslib": "^2.5.0",
"typescript": "^4.9.4",
"vite": "^4.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"class-variance-authority": "^0.4.0"
}
}