-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.35 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.35 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "wikitraverze",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"build:watch": "nodemon --watch app --ext css,ts,tsx --exec 'pnpm build'",
"dev": "react-router dev",
"start": "wrangler dev",
"wait:build": "wait-on dist/index.html",
"dev:all": "concurrently -k -n build,wait,start -c yellow,blue,cyan \"pnpm build:watch\" \"pnpm start\"",
"typegen": "react-router typegen",
"lint": "pnpm /^lint:.*/",
"lint:fmt": "prettier --check .",
"lint:tsc": "pnpm typegen && tsc --noEmit --project tsconfig.cloudflare.json",
"lint:eslint": "eslint .",
"fmt": "prettier --write .",
"test": "vitest run -c vitest.config.ts",
"deploy": "wrangler deploy"
},
"dependencies": {
"@react-router/node": "^7.1.3",
"@react-router/serve": "^7.1.3",
"@tsparticles/engine": "^3.8.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.8.1",
"hono": "^4.7.4",
"hono-react-router-adapter": "^0.6.2",
"isbot": "^5.1.17",
"linkedom": "^0.18.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.3"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.1",
"@cloudflare/workers-types": "^4.20241112.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@hono/vite-dev-server": "^0.19.0",
"@react-router/dev": "^7.1.3",
"@tailwindcss/vite": "^4.0.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.0.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"cloudflare": "^4.2.0",
"concurrently": "^9.1.2",
"dotenv-cli": "^8.0.0",
"eslint": "^9.18.0",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^16.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9",
"wrangler": "^4.0.0"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9"
}
}