-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
{
"name": "micyo",
"private": true,
"version": "0.0.1",
"description": "Microfrontend Libraries",
"main": "src/index.js",
"type": "module",
"namespace": "@micyo",
"workspaces": [
"./packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ThemeSama/micyo.git"
},
"keywords": [
"microfrontend",
"micyo",
"react",
"library",
"libraries",
"tiny"
],
"author": "themesama",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThemeSama/micyo/issues"
},
"homepage": "https://github.com/ThemeSama/micyo#readme",
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-links": "^8.5.0",
"@storybook/addon-onboarding": "^8.5.0",
"@storybook/blocks": "^8.5.0",
"@storybook/cli": "^8.5.0",
"@storybook/react-vite": "^8.5.0",
"@storybook/test": "^8.5.0",
"@types/react": "^19.0.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"date-fns": "^4.1.0",
"msw": "^2.7.0",
"msw-storybook-addon": "^2.0.4",
"react": "^19.0.0",
"storybook": "^8.5.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"storybook-https": "storybook dev -p 6006 --https --ssl-cert ./localhost.crt --ssl-key ./localhost.key",
"build-storybook": "storybook build"
},
"msw": {
"workerDirectory": [
"wp-json"
]
},
"dependencies": {
"react-syntax-highlighter": "^15.6.1"
}
}