-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.32 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "react-tailwindcss-ui",
"version": "0.1.16",
"author": "reactZone",
"description": "react-tailwindcss-ui is a reusable component library that helps to build UIs faster for React Js , Next js Web Projects and Supports TypeScript. The goal is to make building durable UIs more productive and satisfying.",
"homepage": "bit.ly/2WIRg95",
"bugs": {
"url": "https://github.com/reactZone/react-tailwindcss-ui/issues"
},
"repository": {
"type": "git",
"url": "https://bit.ly/2WO5Zio"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist/*"
],
"keywords": [
"tailwind",
"uikit",
"npm",
"package",
"react",
"nextjs",
"nextjs ui",
"reactjs uikit",
"tailwind uikit"
],
"license": "MIT",
"typings": "typings/index.d.ts",
"dependencies": {
"@storybook/theming": "^6.3.7",
"classnames": "^2.3.1",
"react-syntax-highlighter": "^15.4.3"
},
"storybook-deployer": {
"gitUsername": "reactZone",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook to GitHub Pages"
},
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"build:tailwind": "npx tailwindcss build src/tailwind.css -o .storybook/tailwind.css -c tailwind.config.js",
"build:customcss": "npx tailwindcss build src/styles.css -o .storybook/styles.css -c tailwind.config.js",
"build:storycss": "npx tailwindcss build src/stories/docs/components/styles.css -o .storybook/story.css -c tailwind.config.js",
"storybook": "NODE_ENV=development start-storybook -p 6006 --no-manager-cache",
"build-storybook": "NODE_ENV=production yarn clean-storybook-static && yarn build:tailwind && yarn build:customcss && yarn build:storycss && build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"clean-dist": "shx rm -rf dist",
"clean-storybook-static": "shx rm -rf stsorybook-static",
"prepublishOnly": "npm run clean-dist && yarn build",
"lint": "eslint --ext .jsx,.js,.ts,.tsx src",
"fix": "yarn lint --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@craco/craco": "^6.1.1",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/addons": "^6.3.7",
"@storybook/node-logger": "^6.3.7",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.7",
"@storybook/storybook-deployer": "^2.8.10",
"@tailwindcss/postcss7-compat": "^2.0.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"add": "^2.0.6",
"autoprefixer": "^9",
"cssnano": "^4.1.10",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"gh-pages": "^3.1.0",
"path": "^0.12.7",
"postcss": "^8.0.8",
"postcss-import": "^12.0.1",
"postcss-modules": "^3.2.2",
"postcss-preset-env": "^6.7.0",
"purgecss": "^3.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.3",
"rollup": "^2.44.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"shx": "^0.3.3",
"stylelint-config-recommended": "^4.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"typescript-eslint": "^0.0.1-alpha.0",
"web-vitals": "^1.0.1",
"yarn": "^1.22.10"
}
}