-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.75 KB
/
package.json
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
{
"name": "issues",
"private": true,
"sideEffects": false,
"type": "commonjs",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"node --watch-path server.mjs --watch server.mjs\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production node ./server.mjs",
"typecheck": "tsc"
},
"dependencies": {
"@octokit/auth-app": "^6.0.3",
"@primer/octicons-react": "^19.8.0",
"@remix-run/css-bundle": "^2.7.1",
"@remix-run/express": "^2.7.1",
"@remix-run/node": "^2.7.1",
"@remix-run/react": "^2.7.1",
"axios": "^1.6.7",
"bottleneck": "^2.19.5",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"isbot": "^4.1.0",
"lodash.debounce": "^4.0.8",
"morgan": "^1.10.0",
"octokit": "^3.1.2",
"pino": "^8.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-support": "^0.5.21",
"react-use-websocket": "^4.5.0",
"usehooks-ts": "^2.15.0"
},
"devDependencies": {
"@remix-run/dev": "^2.7.1",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/lodash.debounce": "^4.0.9",
"@types/morgan": "^1.9.4",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/source-map-support": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"chokidar": "^3.5.3",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}