-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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
{
"private": true,
"name": "<% name %>",
"version": "0.0.0",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build": "vite build",
"deploy": "npm run type-check && npm run lint && npm run test && devvit upload",
"dev": "devvit playtest",
"launch": "npm run deploy && devvit publish",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"login": "devvit login",
"prettier": "prettier-package-json --write ./package.json && prettier --write .",
"test": "vitest run",
"type-check": "tsc --build"
},
"engines": {
"node": ">=22.2.0"
},
"dependencies": {
"@devvit/start": "0.12.12",
"@devvit/test": "0.12.12",
"@devvit/web": "0.12.12",
"@hono/node-server": "1.19.8",
"@hono/trpc-server": "0.4.2",
"@trpc/client": "11.8.1",
"@trpc/server": "11.8.1",
"clsx": "2.1.1",
"devvit": "0.12.12",
"hono": "4.11.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"superjson": "2.2.6",
"tailwind-merge": "3.4.0",
"zod": "4.3.5"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@tailwindcss/vite": "4.1.18",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"@vitest/coverage-v8": "4.0.16",
"eslint": "9.39.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.26",
"prettier": "3.7.4",
"prettier-package-json": "2.8.0",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"typescript-eslint": "8.53.0",
"vite": "7.3.1",
"vitest": "4.0.16"
}
}