-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.96 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.96 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
85
86
87
88
89
90
91
{
"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",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"prettier": "prettier ./app/**/*.ts ./app/**/*.tsx",
"start": "cross-env TZ=America/Los_Angeles react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"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.3.2",
"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",
"@eslint/compat": "^1.2.8",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"@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",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vitest/coverage-v8": "^3.1.2",
"autoprefixer": "^10.4.19",
"eslint": "^9.25.1",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"lint-staged": "^16.2.7",
"postcss": "^8.4.38",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.4",
"typescript": "^5.1.6",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^3.1.2",
"vitest-fetch-mock": "^0.4.5",
"zx": "~8.8.5"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --cache-location ./node_modules/.cache/eslint . --fix",
"prettier --write"
]
},
"resolutions": {
"fsevents": "npm:@electron/fsevents@2.3.3-fork"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}