-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.44 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
{
"name": "audius-react-hono-example",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --mode client && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "wrangler pages dev --port 4173",
"start": "npm run preview",
"deploy": "$npm_execpath run build && wrangler pages deploy"
},
"dependencies": {
"@audius/harmony": "^0.3.5",
"@audius/sdk": "latest",
"@hono/zod-validator": "^0.2.2",
"hono": "^4.6.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240529.0",
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@hono/vite-cloudflare-pages": "^0.4.1",
"@hono/vite-dev-server": "^0.12.2",
"@rollup/plugin-replace": "^5.0.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.21",
"esbuild-plugin-react-virtualized": "^1.0.4",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.0.2",
"vite": "^5.3.1",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-node-polyfills": "0.17.0",
"wrangler": "3.78.8"
}
}