-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.33 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
{
"name": "dev-toolbar",
"version": "1.2.5",
"license": "MIT",
"author": {
"name": "Varun Raj Manoharan",
"email": "varun@skcript.com",
"url": "https://skcript.com"
},
"repository": {
"type": "git",
"url": "https://github.com/skcript/devbar.git"
},
"scripts": {
"dev": "bun run storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o public/storybook",
"build": "vite build",
"package-publish": "bun run rimraf public && bun run build && npm version patch && bun run copyfiles README.md package.json public && cd public && npm publish"
},
"dependencies": {
"@storybook/react": "^8.0.5",
"clsx": "^1.2.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "always",
"tabWidth": 2,
"printWidth": 80,
"jsxSingleQuote": true,
"trailingComma": "none"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,}": [
"eslint --max-warnings=100",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
},
"devDependencies": {
"@storybook/addon-essentials": "8.0.5",
"@storybook/addon-interactions": "8.0.5",
"@storybook/addon-links": "8.0.5",
"@storybook/blocks": "8.0.5",
"@storybook/react-vite": "^8.0.5",
"@types/node": "20.12.3",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.23",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"copyfiles": "^2.4.1",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unused-imports": "^3.1.0",
"postcss": "8.4.23",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup-plugin-multi-input": "^1.4.1",
"sass": "^1.72.0",
"storybook": "8.0.5",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.4.3",
"vite": "^4.5.3",
"vite-plugin-dts": "^3.8.1"
}
}