-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.18 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.18 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "slide",
"private": true,
"scripts": {
"new": "node ./scripts/createWorkspace.ts",
"dev": "node ./scripts/runWorkspace.ts --command=dev",
"build": "node ./scripts/runWorkspace.ts --command=build",
"export": "node ./scripts/runWorkspace.ts --command=export",
"lint": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"type": "module",
"workspaces": [
"reuse",
"2023-03-26",
"how-to-keep-learning",
"introduction-functional-programming",
"how-to-tech-writing",
"howto-use-react-keys",
"the-tooltip",
"is-seo-everything",
"hooks-testing",
"frontend-conf-hokkaido",
"ts-overload-function",
"review-comment",
"browser-and-ui-1",
"theme-browser-and-ui",
"pepc",
"browser-and-ui-2",
"css-polyfill",
"beyond-early-returns",
"reduce-bundle-size",
"browser-and-ui-3"
],
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@slidev/cli": "^52.8.0",
"@slidev/theme-default": "^0.25.0",
"@slidev/theme-seriph": "^0.25.0",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
"@storybook/addon-onboarding": "^8.6.11",
"@storybook/blocks": "^8.6.14",
"@storybook/test": "^8.6.11",
"@storybook/vue3": "^8.6.12",
"@storybook/vue3-vite": "^8.6.14",
"@swc/core": "^1.11.24",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.13.14",
"@types/qrcode": "^1.5.5",
"@vitejs/plugin-vue": "^6.0.1",
"inquirer": "^12.9.6",
"markdownlint-cli2": "^0.18.1",
"playwright": "^1.53.1",
"storybook": "^8.5.4",
"typescript": "^5.8.3",
"vite": "^6.0.7"
},
"dependencies": {
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/radix-icons": "^1.2.5",
"@iconify-json/simple-icons": "^1.2.57",
"dayjs": "^1.11.19",
"qrcode": "^1.5.4",
"vue": "^3.5.13"
},
"volta": {
"node": "24.14.1"
},
"engines": {
"node": "^24.14.1"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.46.2",
"@rollup/rollup-linux-arm64-gnu": "^4.52.3"
}
}