-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 KB
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
{
"name": "@openhotel/web-components",
"license": "NC BY-NC-SA 4.0",
"version": "0.0.0",
"type": "module",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"styles.scss"
],
"engines": {
"node": "22"
},
"repository": {
"url": "https://github.com/openhotel/web-components"
},
"packageManager": "yarn@4.6.0",
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@storybook/addon-essentials": "^8.5.1",
"@storybook/addon-interactions": "^8.5.1",
"@storybook/addon-links": "^8.5.1",
"@storybook/addon-onboarding": "^8.5.1",
"@storybook/blocks": "^8.5.1",
"@storybook/react": "^8.5.1",
"@storybook/react-vite": "^8.5.1",
"@storybook/test": "^8.5.1",
"@types/react": "19.0.8",
"@vitejs/plugin-react": "4.3.3",
"jsr": "0.13.2",
"prettier": "3.3.3",
"prop-types": "15.8.1",
"sass": "^1.80.4",
"storybook": "^8.5.1",
"storybook-dark-mode": "^4.0.2",
"vite": "^5.4.10",
"vite-plugin-dts": "4.3.0"
},
"dependencies": {
"dayjs": "^1.11.13",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"scripts": {
"prettier:check": "prettier -c ./",
"prettier:write": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "vite build",
"publish": "npm publish --provenance --access public",
"link": "npm link"
}
}