-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.43 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "storybook-addon-playground",
"version": "1.9.2",
"description": "A playground to enable consumers learn how to use the component library or to reproduce bugs",
"type": "module",
"keywords": [
"playground",
"sandbox",
"code",
"debug",
"learn",
"reproduce",
"bugs",
"component",
"storybook-addons"
],
"repository": {
"type": "git",
"url": "https://github.com/mondaycom/storybook-addon-playground"
},
"storybook": {
"displayName": "Playground",
"supportedFrameworks": [
"react"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
},
"author": "Vibe",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"import": "./dist/index.js"
},
"./manager": "./dist/manager.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"test": "vitest",
"test:watch": "yarn test -- -w",
"build": "rollup -c",
"build:watch": "yarn build -- -w",
"build:icons": "yarn svgr --typescript --no-svgo --out-dir src/icons",
"lint": "eslint . --max-warnings 0",
"lint:fix": "yarn lint -- --fix",
"storybook": "storybook dev -p 6006",
"start": "yarn build && yarn storybook"
},
"dependencies": {
"@storybook/addon-links": "^7.6.4",
"@storybook/components": "^7.6.4",
"@storybook/core-events": "^7.6.4",
"@uiw/codemirror-extensions-langs": "^4.23.0",
"@uiw/codemirror-theme-github": "^4.23.0",
"@uiw/react-codemirror": "^4.23.0",
"classnames": "^2.5.1",
"lz-string": "^1.5.0",
"prettier": "^2.8.8",
"react-live": "^4.1.7",
"style-inject": "^0.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/react": "^7.6.4",
"@storybook/react-vite": "^7.6.4",
"@storybook/theming": "^7.6.4",
"@storybook/types": "^7.6.4",
"@svgr/cli": "^8.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^12.1.5",
"@types/node": "^18.19.3",
"@types/prettier": "^2.7.3",
"@types/react": "^16.14.60",
"@types/react-dom": "^16.9.24",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.1.0",
"monday-ui-react-core": "^2.69.1",
"postcss": "^8.4.39",
"react": "^16.14.0",
"react-docgen": "^7.0.3",
"react-dom": "^16.14.0",
"rollup": "^4.19.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.77.8",
"storybook": "^7.6.4",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.3"
},
"peerDependencies": {
"@storybook/manager-api": "^7.0.0 || ^8.0.0",
"@storybook/preview-api": "^7.0.0 || ^8.0.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}