-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.22 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
{
"name": "tail-ui",
"private": false,
"version": "0.0.0",
"author": "haliscicek.com",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"/dist"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./index.css": {
"import": "./dist/index.css",
"require": "./dist/index.css"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"staging": "vite --mode staging",
"prod": "vite --mode production",
"build-staging": "tsc && vite build --mode staging",
"build-dev": "tsc && vite build --mode development",
"build": "tsc && vite build && npm run build:styles",
"build:styles": "postcss src/styles/index.css -o dist/index.css",
"eslint": "eslint src --ext .ts,.tsx,.js ",
"eslint:fix": "eslint src --ext .ts,.tsx,.js --fix",
"prettier": "prettier --write \"./**/*.{js,ts,tsx}\"",
"synch": "git add . && git commit -m \"commit\" && git pull && git push",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"ci": "pnpm run lint && pnpm run build",
"release": "pnpm run lint && pnpm run build && changeset publish",
"storybook": "storybook dev -p 6006 ",
"build-storybook": "storybook build ",
"serve-storybook": "serve storybook-static"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "7.6.7",
"@storybook/addon-interactions": "7.6.7",
"@storybook/addon-links": "7.6.7",
"@storybook/addon-themes": "^7.6.7",
"@storybook/blocks": "7.6.7",
"@storybook/builder-vite": "7.6.7",
"@storybook/react": "7.6.7",
"@storybook/react-vite": "7.6.7",
"@storybook/test": "7.6.7",
"@storybook/theming": "7.6.7",
"@changesets/cli": "^2.27.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-storybook": "^0.6.15",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"prettier": "^3.1.1",
"storybook": "7.6.7",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.0",
"vite-plugin-eslint": "^1.8.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}