generated from openscript-ch/react-vite-storybook-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.48 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
{
"name": "react-vite-storybook-typescript-starter",
"version": "0.1.0",
"description": "A React component library starter with Storybook, Vite and Typescript.",
"keywords": [
"react",
"react-component",
"typescript",
"starter",
"vite",
"storybook"
],
"homepage": "https://github.com/openscript-ch/react-vite-storybook-typescript-starter",
"repository": {
"type": "git",
"url": "https://github.com/openscript-ch/react-vite-storybook-typescript-starter"
},
"bugs": {
"url": "https://github.com/openscript-ch/react-vite-storybook-typescript-starter/issues"
},
"author": "openscript GmbH <[email protected]>",
"license": "MIT",
"main": "./react-vite-storybook-typescript-starter.umd.js",
"module": "./react-vite-storybook-typescript-starter.es.js",
"exports": {
".": {
"import": "./react-vite-storybook-typescript-starter.es.js",
"require": "./react-vite-storybook-typescript-starter.umd.js"
}
},
"size-limit": [
{
"path": "./dist/react-vite-storybook-typescript-starter.es.js"
},
{
"path": "./dist/react-vite-storybook-typescript-starter.umd.js"
}
],
"scripts": {
"build": "vite build",
"build:storybook": "build-storybook",
"check:format": "eslint . --max-warnings 0",
"check:types": "tsc --noEmit",
"check:size": "npm run build && size-limit",
"postbuild": "node ./postbuild.js",
"release:major": "standard-version --release-as major && git push --follow-tags",
"release:minor": "standard-version --release-as minor && git push --follow-tags",
"release:patch": "standard-version --release-as patch && git push --follow-tags",
"release:create-github-release": "conventional-github-releaser -p angular",
"serve": "vite preview",
"start": "start-storybook -p 6007 --ci",
"storybook": "start-storybook -p 6007 --ci",
"test": "vitest",
"coverage": "vitest --coverage",
"upgrade-interactive": "npm-check -u"
},
"dependencies": {},
"peerDependencies": {
"@emotion/react": "^11.9.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@emotion/babel-plugin": "^11.9.2",
"@emotion/react": "11.9.3",
"@size-limit/preset-small-lib": "7.0.8",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-docs": "6.5.9",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/addon-storysource": "6.5.9",
"@storybook/builder-vite": "0.1.39",
"@storybook/react": "6.5.9",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"@vitejs/plugin-react": "1.3.2",
"babel-loader": "^8.2.5",
"conventional-github-releaser": "3.1.5",
"eslint": "8.19.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.1",
"npm-check": "5.9.2",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"size-limit": "7.0.8",
"standard-version": "9.5.0",
"typescript": "4.7.4",
"vite": "2.9.14",
"vite-plugin-dts": "1.3.0",
"vite-plugin-markdown": "2.0.2",
"vitest": "0.18.0"
}
}