-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 3.29 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
{
"license": "MIT",
"author": {
"name": "Serif Colakel",
"email": "[email protected]"
},
"description": "UI Components with React & Typescript with TailwindCSS",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"readme": "README.md",
"name": "serif-ui-components",
"private": false,
"version": "0.0.14",
"type": "module",
"keywords": [
"react",
"typescript",
"tailwindcss",
"ui",
"components",
"chromatic",
"storybook",
"vite",
"vite-plugin-dts",
"vitest",
"eslint",
"prettier",
"husky"
],
"scripts": {
"dev": "vite",
"release": "bash ./scripts/release.sh",
"build": "tsc && vite build && npm run tailwind",
"tailwind": "npx tailwindcss -o ./dist/index.css --minify",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest --run",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
},
"dependencies": {
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"tailwind-merge": "^1.13.2"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.27",
"@storybook/addon-interactions": "^7.0.27",
"@storybook/addon-links": "^7.0.27",
"@storybook/blocks": "^7.0.27",
"@storybook/builder-vite": "^7.0.27",
"@storybook/react": "^7.0.27",
"@storybook/react-vite": "^7.0.27",
"@storybook/testing-library": "^0.0.14-next.2",
"@tailwindcss/forms": "^0.5.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "^10.4.14",
"chromatic": "^6.19.9",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.26",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"storybook": "^7.0.27",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-dts": "^3.3.0",
"vitest": "^0.33.0"
},
"bugs": {
"url": "https://github.com/serifcolakel/serif-ui-components/issues"
},
"homepage": "https://github.com/serifcolakel/serif-ui-components#readme"
}