forked from StaticMania/keep-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.42 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
{
"name": "keep-react",
"version": "0.0.3",
"description": "Official React components built for React and Tailwind CSS",
"license": "MIT",
"keywords": [
"design-system",
"keep-design-system",
"keep-react",
"react",
"tailwind",
"tailwindcss",
"tailwind-css"
],
"homepage": "https://react.keepdesign.io/",
"bugs": "https://github.com/StaticMania/keep-react/issues",
"files": [
"./lib/",
"./src"
],
"main": "./lib/cjs/index.js",
"style": "./src/main.min.css",
"preset": "./src/keep-preset.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/StaticMania/keep-react"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"newApp": "rm -rf node_modules && rm -rf .next && yarn install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build:lib": "rm -rf ./lib/ && yarn build:lib:esm && yarn build:lib:cjs && yarn build:css",
"build:css": "css-minify -f ./app/main.css -o ./lib/cjs/theme",
"build:lib:cjs": "tsc -p tsconfig.lib.json",
"build:lib:esm": "tsc -p tsconfig.lib.json --module esnext --declaration --outDir ./lib/esm"
},
"dependencies": {
"@floating-ui/react": "^0.25.3",
"@headlessui/react": "^1.7.16",
"phosphor-react": "^1.4.1",
"rc-slider": "^10.2.1",
"rc-tooltip": "^6.0.1",
"react": "18.2.0",
"react-collapse": "^5.1.1",
"react-datepicker": "^4.16.0",
"react-dom": "18.2.0",
"react-indiana-drag-scroll": "^2.2.0",
"react-syntax-highlighter": "^15.5.0",
"recharts": "^2.8.0",
"tailwind-merge": "1.14.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@docsearch/react": "^3.5.2",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.12",
"@storybook/addon-essentials": "7.5.2",
"@storybook/addon-interactions": "7.5.2",
"@storybook/addon-links": "7.5.2",
"@storybook/addon-onboarding": "1.0.8",
"@storybook/blocks": "7.5.2",
"@storybook/nextjs": "7.5.2",
"@storybook/react": "7.5.2",
"@storybook/testing-library": "0.2.2",
"@tailwindcss/forms": "^0.5.4",
"@types/babel__core": "^7.20.3",
"@types/babel__generator": "^7.6.6",
"@types/node": "^20.8.10",
"@types/rc-slider": "^9.3.1",
"@types/react": "^18.2.22",
"@types/react-collapse": "^5.0.2",
"@types/react-datepicker": "^4.15.0",
"@types/react-dom": "18.2.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/recharts": "^1.8.24",
"autoprefixer": "10.4.14",
"css-minify": "^2.0.0",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"eslint-plugin-storybook": "^0.6.15",
"next": "^13.5.6",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"prettier-plugin-css-order": "^2.0.1",
"prettier-plugin-tailwindcss": "^0.5.6",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"rehype-slug": "^6.0.0",
"remark-toc": "^8.0.1",
"storybook": "^7.5.2",
"tailwindcss": "3.3.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.1.6"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"rules": {
"@typescript-eslint/consistent-type-imports": "warn",
"@next/next/no-img-element": "off",
"jsx-a11y/anchor-is-valid": "off"
}
}