forked from daisyui/react-daisyui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.91 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
{
"name": "react-daisyui",
"version": "3.0.3",
"description": "react-daisyui - DaisyUI components built with React 🌼",
"author": "daisyui",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/daisyui/react-daisyui.git"
},
"type": "module",
"exports": {
"import": "./dist/react-daisyui.modern.js",
"require": "./dist/react-daisyui.cjs",
"default": "./dist/react-daisyui.modern.js",
"types": "./dist/index.d.ts"
},
"main": "./dist/react-daisyui.cjs",
"module": "./dist/react-daisyui.esm.js",
"unpkg": "./dist/react-daisyui.umd.js",
"sideEffects": false,
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"start": "start-storybook -p 6006",
"dist": "microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx --format modern,cjs,esm --css inline --compress false",
"docs": "build-storybook -o ./docs -s ./public --no-manager-cache",
"test": "jest",
"format": "prettier --write ./src",
"prepublishOnly": "npm run dist",
"postpublish": "git push --no-verify && git push --tags",
"version": "npm run docs && git add -A docs",
"generate": "plop"
},
"peerDependencies": {
"daisyui": "^2.50.2",
"react": ">=16",
"react-dom": ">=16",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@storybook/addon-actions": "^6.4.1",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-essentials": "^6.4.1",
"@storybook/addon-links": "^6.4.1",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-storysource": "^6.4.19",
"@storybook/react": "^6.4.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^27.4.1",
"@types/lodash.range": "^3.2.6",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@vitejs/plugin-react": "^1.2.0",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.2",
"clsx": "^1.1.1",
"eslint-plugin-mdx": "^1.16.0",
"jest": "^27.0.6",
"microbundle": "^0.14.2",
"plop": "^3.0.5",
"postcss": "^8.4.8",
"prettier": "^2.3.2",
"prism-react-renderer": "^1.3.1",
"react-test-renderer": "^17.0.2",
"storybook-addon-themes": "^6.1.0",
"storybook-builder-vite": "^0.1.18",
"styled-jsx": "^5.0.0",
"tailwind-merge": "^1.2.0",
"ts-jest": "^27.1.3",
"typescript": "^4.3.5",
"vite": "^2.8.6"
}
}