-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"private": true,
"name": "<% name %>",
"version": "0.0.0",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build": "vite build",
"deploy": "npm run test:types && 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 .",
"test:types": "tsc --build",
"test:unit": "node --experimental-strip-types --no-warnings=ExperimentalWarning --test \"src/**/*.test.ts\""
},
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@devvit/start": "0.14.5",
"@devvit/web": "0.14.5",
"@hono/node-server": "2.1.1",
"devvit": "0.14.5",
"hono": "4.13.7",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tailwindcss/vite": "4.3.3",
"@types/node": "^24.13.3",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.7",
"@vitejs/plugin-react": "6.1.0",
"eslint": "10.10.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.6",
"globals": "17.12.0",
"prettier": "3.9.6",
"tailwindcss": "4.3.3",
"typescript": "6.0.3",
"typescript-eslint": "8.70.0",
"vite": "8.2.2"
}
}