-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 2.02 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
{
"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.16.0",
"@webscopeio/react-textarea-autocomplete": "4.9.2",
"dompurify": "3.2.1",
"gemoji": "8.1.0",
"highlight.js": "11.10.0",
"marked": "15.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"zod": "3.23.8"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@biomejs/biome": "1.9.4",
"@chromatic-com/storybook": "3.2.2",
"@storybook/addon-a11y": "8.4.5",
"@storybook/addon-actions": "8.4.5",
"@storybook/addon-essentials": "8.4.5",
"@storybook/addon-links": "8.4.5",
"@storybook/react": "8.4.5",
"@storybook/react-vite": "8.4.5",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/archiver": "6.0.3",
"@types/chrome": "0.0.283",
"@types/dompurify": "3.2.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/webscopeio__react-textarea-autocomplete": "4.7.5",
"@vanilla-extract/vite-plugin": "4.0.17",
"@vitejs/plugin-react-swc": "3.7.1",
"archiver": "7.0.1",
"chromatic": "11.18.1",
"jsdom": "25.0.1",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"sass": "1.81.0",
"storybook": "8.4.5",
"tsx": "4.19.2",
"typescript": "5.6.3",
"vite": "5.4.11",
"vitest": "2.1.5"
}
}