generated from openscript-ch/react-vite-storybook-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·98 lines (98 loc) · 3.02 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
{
"name": "react-alternating-timeline",
"version": "2.1.4",
"description": "A React component library starter with Storybook, Vite and Typescript.",
"keywords": [
"react",
"react-component",
"typescript",
"vite",
"storybook"
],
"homepage": "https://github.com/openscript-ch/react-alternating-timeline",
"repository": {
"type": "git",
"url": "https://github.com/openscript-ch/react-alternating-timeline"
},
"bugs": {
"url": "https://github.com/openscript-ch/react-alternating-timeline/issues"
},
"author": "openscript GmbH <[email protected]>",
"license": "MIT",
"main": "./react-alternating-timeline.umd.js",
"module": "./react-alternating-timeline.es.js",
"exports": {
".": {
"import": "./react-alternating-timeline.es.js",
"require": "./react-alternating-timeline.umd.js"
}
},
"size-limit": [
{
"path": "./dist/react-alternating-timeline.es.js"
},
{
"path": "./dist/react-alternating-timeline.umd.js"
}
],
"scripts": {
"build": "vite build",
"build:storybook": "storybook build",
"check:format": "eslint . --max-warnings 0",
"check:types": "tsc --noEmit",
"check:size": "npm run build && size-limit",
"postbuild": "node ./postbuild.js",
"serve": "vite preview",
"start": "storybook dev -p 6007 --ci",
"storybook": "storybook dev -p 6007 --ci",
"test": "vitest",
"test:coverage": "vitest --coverage",
"upgrade-interactive": "npm-check -u"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.19",
"@mdx-js/rollup": "^3.0.0",
"@size-limit/preset-small-lib": "^11.0.0",
"@storybook/addon-essentials": "^7.4.1",
"@storybook/addon-interactions": "^7.4.1",
"@storybook/addon-links": "^7.4.1",
"@storybook/addon-storysource": "^7.4.1",
"@storybook/react": "^7.4.1",
"@storybook/react-vite": "^7.4.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-istanbul": "^0.34.4",
"babel-loader": "^9.1.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^23.0.0",
"npm-check": "^6.0.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^11.0.0",
"storybook": "^7.4.1",
"typescript": "^5.2.2",
"vite": "^4.4.4",
"vite-plugin-css-injected-by-js": "^3.1.2",
"vite-plugin-dts": "^3.5.3",
"vitest": "^0.34.4"
}
}