-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 846 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 846 Bytes
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
{
"name": "textodon",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"dev:preview": "bun run build && bunx wrangler pages dev dist",
"preview": "vite preview",
"test": "bun test",
"test:watch": "bun test --watch"
},
"dependencies": {
"dompurify": "^3.3.2",
"emoji-datasource": "^16.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"wrangler": "^4.78.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^6.0.1",
"bun-types": "^1.3.11",
"esbuild": "^0.25.5",
"picomatch": "^4.0.4",
"rollup": "^4.59.0",
"typescript": "^5.5.4",
"vite": "^8.0.3",
"vite-plugin-svgr": "^5.0.0"
},
"overrides": {
"picomatch": "^4.0.4"
}
}