-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 3.14 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
{
"name": "react-demo-tab",
"version": "0.0.0",
"description": "React component to easily create demos of other components",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "npm run storybook",
"prepare": "husky",
"build": "rm -rf dist && rollup --config scripts/rollup.config.ts --configPlugin typescript",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 .",
"lint-fix": "eslint --fix .",
"lint-staged-husky": "lint-staged",
"tsc": "tsc -p scripts/tsconfig.dev.json",
"format-lint": "prettier --config .prettierrc --check --ignore-unknown .",
"format-fix": "prettier --config .prettierrc --write --ignore-unknown -l .",
"commit": "git-cz",
"storybook": "TS_NODE_PROJECT=scripts/tsconfig.dev.json storybook dev -p 9009 --quiet",
"storybook-build": "storybook build -o build-storybook-static",
"release": "semantic-release --branches main",
"clean": "rm -rf node_modules coverage dist compiled build-storybook-static"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.14.0",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-image": "3.0.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@storybook/addon-styling": "2.0.0",
"@storybook/addon-webpack5-compiler-swc": "1.0.5",
"@storybook/manager-api": "8.4.2",
"@storybook/react": "8.4.2",
"@storybook/react-webpack5": "8.4.2",
"@storybook/theming": "8.4.2",
"@types/eslint": "9.6.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-syntax-highlighter": "15.5.13",
"commitizen": "4.3.1",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-no-array-reduce": "1.0.62",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"rollup": "4.24.4",
"rollup-plugin-dts": "6.1.1",
"sass": "1.80.6",
"sass-loader": "16.0.3",
"semantic-release": "24.2.0",
"storybook": "8.4.2",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@rehooks/local-storage": "2.4.5",
"react-syntax-highlighter": "15.6.1",
"react-tabs": "6.0.2"
},
"license": "MIT",
"author": "Marko Kosir <kosir.mar@gmail.com>",
"homepage": "https://mkosir.github.io/react-demo-tab",
"repository": {
"type": "git",
"url": "git+https://github.com/mkosir/react-demo-tab.git"
},
"bugs": {
"url": "https://github.com/mkosir/react-demo-tab/issues"
},
"keywords": [
"react",
"react-component",
"demo-component",
"demo",
"demo-tab",
"demotab",
"code",
"tab"
]
}