-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.53 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.53 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
75
76
77
78
79
80
81
82
83
84
{
"name": "release-v2",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "cross-env TZ=America/Los_Angeles react-router dev",
"dev:redis": "docker compose up -d && cross-env REDIS_URL=redis://localhost:6379 npm run dev",
"start": "cross-env TZ=America/Los_Angeles react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"lint": "oxfmt --check . && oxlint",
"lint:fix": "oxfmt --write . && oxlint --fix",
"test": "vitest",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"dependencies": {
"@electron/github-app-auth": "^3.0.0",
"@icons-pack/react-simple-icons": "^12.7.0",
"@keyvhq/core": "^2.1.7",
"@keyvhq/file": "^2.1.7",
"@keyvhq/memoize": "patch:@keyvhq/memoize@npm%3A2.1.11#~/.yarn/patches/@keyvhq-memoize-npm-2.1.11-a8a4b45386.patch",
"@keyvhq/redis": "^2.1.8",
"@octokit/rest": "^21.1.1",
"@react-router/node": "^7.13.2",
"@react-router/serve": "^7.13.2",
"cookie": "^1.0.2",
"cross-env": "^7.0.3",
"dompurify": "^3.4.0",
"geoip-lite": "^1.4.10",
"isbot": "^5.1.26",
"jsdom": "^26.1.0",
"lucide-react": "^0.503.0",
"markdown-it": "^14.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^7.13.2",
"semver": "^7.7.1",
"undici": "^6.24.1"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@react-router/dev": "^7.13.2",
"@types/geoip-lite": "^1.4.4",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/semver": "^7.7.0",
"@vitest/coverage-v8": "^4.1.4",
"autoprefixer": "^10.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.4",
"typescript": "^6.0.2",
"vite": "^7.3.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^4.1.4",
"vitest-fetch-mock": "^0.4.5",
"zx": "~8.8.5"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"oxfmt --write",
"oxlint --fix"
],
"*.{json,css}": [
"oxfmt --write"
]
},
"resolutions": {
"fsevents": "npm:@electron/fsevents@2.3.3-fork"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}