-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.61 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": "hotandcold2",
"version": "0.0.0",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build": "vite build",
"deploy": "npm run type-check && npm run test && npm run build && devvit publish",
"dev": "devvit playtest",
"launch": "npm run build && devvit publish",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"login": "devvit login",
"prettier": "prettier-package-json --write ./package.json && prettier --write .",
"test": "vitest run",
"type-check": "tsc --build"
},
"dependencies": {
"@devvit/analytics": "0.13.10",
"@devvit/notifications": "0.13.10",
"@devvit/shared-types": "0.13.10",
"@devvit/start": "0.13.10",
"@devvit/web": "0.13.10",
"@preact/signals": "^1.2.2",
"@trpc/client": "11.4.4",
"@trpc/server": "11.4.4",
"clsx": "2.1.1",
"devvit": "0.13.10",
"express": "4.19.2",
"posthog-js": "1.268.4",
"preact": "^10.25.3",
"superjson": "2.2.2",
"tailwind-merge": "3.3.0",
"zod": "4.0.14"
},
"devDependencies": {
"@devvit/test": "0.13.10",
"@eslint/js": "9.23.0",
"@preact/preset-vite": "2.10.2",
"@tailwindcss/vite": "4.1.18",
"@types/express": "5.0.1",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.23.0",
"globals": "15.15.0",
"playwright": "1.55.1",
"prettier": "3.5.3",
"prettier-package-json": "2.8.0",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.1.18",
"typescript": "5.8.2",
"typescript-eslint": "8.29.0",
"vite": "7.1.9",
"vitest": "3.2.4"
}
}