-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"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 && devvit upload",
"dev": "devvit playtest",
"launch": "npm run deploy && devvit publish",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"login": "devvit login",
"prettier": "prettier --write .",
"type-check": "tsc --build"
},
"engines": {
"node": ">=22.2.0"
},
"dependencies": {
"@devvit/start": "0.12.23",
"@devvit/web": "0.12.23",
"@hono/node-server": "2.0.2",
"devvit": "0.12.23",
"hono": "4.12.18",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tailwindcss/vite": "4.3.0",
"@types/node": "^22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"eslint": "10.3.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.6.0",
"prettier": "3.8.3",
"tailwindcss": "4.3.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.3",
"vite": "8.0.12"
}
}