-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
{
"name": "marktone",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"clean": "tsx scripts/rm.ts dist/ *.zip",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"lint": "run-p --print-label 'lint:*'",
"lint:biome": "biome check",
"lint:prettier": "prettier --check .",
"fix": "run-s 'fix:*'",
"fix:biome": "biome check --write",
"fix:prettier": "prettier --write .",
"package": "run-s --print-label clean build && tsx scripts/zip.ts marktone.zip dist",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic"
},
"dependencies": {
"@vanilla-extract/css": "1.17.1",
"@webscopeio/react-textarea-autocomplete": "4.9.2",
"dompurify": "3.2.4",
"gemoji": "8.1.0",
"highlight.js": "11.11.1",
"marked": "15.0.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"zod": "3.24.2"
},
"devDependencies": {
"@babel/core": "7.26.9",
"@biomejs/biome": "1.9.4",
"@chromatic-com/storybook": "3.2.4",
"@storybook/addon-a11y": "8.5.6",
"@storybook/addon-actions": "8.5.6",
"@storybook/addon-essentials": "8.5.6",
"@storybook/addon-links": "8.5.6",
"@storybook/react": "8.5.6",
"@storybook/react-vite": "8.5.6",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/archiver": "6.0.3",
"@types/chrome": "0.0.304",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/webscopeio__react-textarea-autocomplete": "4.7.5",
"@vanilla-extract/vite-plugin": "5.0.1",
"@vitejs/plugin-react-swc": "3.8.0",
"archiver": "7.0.1",
"chromatic": "11.25.2",
"jsdom": "26.0.0",
"npm-run-all2": "7.0.2",
"prettier": "3.5.1",
"sass": "1.85.0",
"storybook": "8.5.6",
"tsx": "4.19.2",
"typescript": "5.7.3",
"vite": "5.4.14",
"vitest": "3.0.5"
}
}