-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.92 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
{
"name": "kws3-storybooks-frontend",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "npm-run-all dev:hmr",
"dev:hmr": "concurrently \"storybook dev -p 9009\" \"node scripts/watcher/index.js\"",
"build": "storybook build --docs -o build",
"populate": "grunt dist",
"build:dist": "npm-run-all -s build -s populate",
"deploy:dist": "grunt deploy:dist",
"bootstrap": "lerna bootstrap --hoist",
"publish:lerna": "lerna publish",
"publish": "npm-run-all -s generate:dts-all -s publish:lerna",
"list": "lerna list",
"what_changed": "sh ./what_changed.sh",
"lint": "eslint packages/ src/",
"lint:fix": "eslint --fix packages/ src/",
"sync:frameworkTypes": "node scripts/type_injector/syncer.js",
"generate:dts-all": "node scripts/dts_generator/all.js",
"generate:dts": "node scripts/dts_generator/index.js"
},
"dependencies": {
"@storybook/test": "^8.2.4",
"bulma": "^1.0.1",
"global": "^4.4.0"
},
"devDependencies": {
"@kws3/eslint-plugin-svelte3": "^1.0.1",
"@mdx-js/react": "^2.3.0",
"@storybook/addon-actions": "^8.2.4",
"@storybook/addon-backgrounds": "^8.2.4",
"@storybook/addon-controls": "^8.2.4",
"@storybook/addon-docs": "^8.2.4",
"@storybook/addon-essentials": "^8.2.4",
"@storybook/addon-interactions": "^8.2.4",
"@storybook/addon-knobs": "7.0.2",
"@storybook/addon-mdx-gfm": "^8.2.4",
"@storybook/addon-svelte-csf": "^4.1.2",
"@storybook/addon-viewport": "^8.2.4",
"@storybook/addons": "^7.6.17",
"@storybook/blocks": "^8.2.4",
"@storybook/cli": "^8.2.4",
"@storybook/mdx1-csf": "^1.0.0",
"@storybook/mdx2-csf": "^1.1.0",
"@storybook/source-loader": "^8.2.4",
"@storybook/svelte": "^8.2.4",
"@storybook/svelte-vite": "^8.2.4",
"@storybook/theming": "^8.2.4",
"@storybook/addon-themes": "^8.2.4",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"storybook-dark-mode": "4.0.2",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"comment-parser": "^1.2.3",
"commenting": "^1.1.0",
"concurrently": "^8.0.1",
"ejs": "^3.1.9",
"eslint": "^8.9.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svelte": "^2.33.2",
"glob": "^10.3.10",
"grunt": "^1.6.1",
"grunt-gitinfo": "^0.1.9",
"grunt-sftp-deploy": "^0.2.5",
"grunt-text-replace": "^0.4.0",
"jest": "^29.7.0 ",
"lerna": "^3.3.0",
"moment": "^2.22.2",
"npm-run-all": "^4.1.5",
"pluralize": "^8.0.0",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"rimraf": "^5.0.0",
"sass": "^1.72.0",
"storybook": "^8.2.4",
"style-loader": "^3.3.3",
"svelte": "^4.2.10",
"svelte-eslint-parser": "^0.14.0",
"svelte-preprocess": "^4.8.0",
"svelte2tsx": "^0.6.11",
"sveltedoc-parser": "https://github.com/ekhaled/sveltedoc-parser#custom",
"ts-dedent": "^2.2.0",
"typescript": "^5.2.2",
"vite": "^4.2.1"
}
}