forked from radix-ui/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.25 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
{
"name": "@modulz/design-system",
"version": "1.0.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 0",
"ds:build": "rollup -c",
"ds:release": "yarn ds:build && np"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@radix-ui/colors": "0.1.7",
"@radix-ui/react-accordion": "1.0.0",
"@radix-ui/react-alert-dialog": "1.0.0",
"@radix-ui/react-aspect-ratio": "1.0.0",
"@radix-ui/react-avatar": "1.0.0",
"@radix-ui/react-checkbox": "1.0.0",
"@radix-ui/react-context-menu": "1.0.0",
"@radix-ui/react-dialog": "1.0.0",
"@radix-ui/react-dropdown-menu": "1.0.0",
"@radix-ui/react-icons": "1.1.1",
"@radix-ui/react-menu": "1.0.0",
"@radix-ui/react-popover": "1.0.0",
"@radix-ui/react-portal": "1.0.0",
"@radix-ui/react-progress": "1.0.0",
"@radix-ui/react-radio-group": "1.0.0",
"@radix-ui/react-separator": "1.0.0",
"@radix-ui/react-slider": "1.0.0",
"@radix-ui/react-switch": "1.0.0",
"@radix-ui/react-tabs": "1.0.0",
"@radix-ui/react-toggle": "1.0.0",
"@radix-ui/react-tooltip": "1.0.0",
"@radix-ui/react-use-layout-effect": "1.0.0",
"@stitches/react": "1.2.8",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@next/mdx": "10.2.3",
"@types/bezier-easing": "^2.1.2",
"@types/chroma-js": "^2.1.3",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^14.14.28",
"@types/react": "^17.0.2",
"bezier-easing": "^2.1.0",
"chroma-js": "^2.1.1",
"husky": ">=4",
"lint-staged": ">=10",
"next": "10.2.3",
"np": "^7.3.0",
"prettier": "^2.1.2",
"react": "17.0.1",
"react-bezier-curve-editor": "^1.0.0",
"react-dom": "17.0.1",
"rollup": "^2.33.1",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.3.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}