-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.77 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.77 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
92
93
94
{
"name": "polyglot",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"start-webhook": "smee -u $WEBHOOK_PROXY_URL --target http://localhost:3000/github/webhook",
"build": "npx remix vite:build",
"dev": "npx remix vite:dev",
"start": "npx remix-serve ./build/server/index.js",
"typecheck": "tsc --watch"
},
"private": true,
"sideEffects": false,
"dependencies": {
"@aws-sdk/client-sns": "^3.490.0",
"@ebay/nice-modal-react": "^1.2.13",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/node": "^2.6.0",
"@remix-run/react": "^2.6.0",
"@remix-run/serve": "^2.6.0",
"@tanstack/react-table": "^8.11.6",
"classnames": "^2.3.1",
"drizzle-orm": "^0.29.3",
"flat": "^5.0.2",
"isbot": "^4.4.0",
"octokit": "^3.1.2",
"octokit-plugin-create-pull-request": "^5.1.1",
"postgres": "^3.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"reflect-metadata": "^0.1.13",
"remeda": "^1.0.1",
"remix-auth": "^3.6.0",
"remix-auth-form": "^1.4.0",
"remix-auth-github": "^1.6.0",
"remix-auth-google": "^2.0.0",
"tiny-invariant": "^1.3.1",
"tslib": "^2.3.0",
"use-local-storage-state": "^19.1.0",
"uuidv7": "^0.6.3",
"yaml": "^2.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"@oclif/core": "^1.13.10",
"@oclif/plugin-help": "^5.1.12",
"@octokit/webhooks-types": "^6.3.5",
"@remix-run/dev": "^2.6.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.4",
"@types/flat": "^5.0.2",
"@types/jest": "27.4.1",
"@types/node": "^20.11.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-syntax-highlighter": "^15.5.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.8",
"concurrently": "^7.3.0",
"drizzle-kit": "^0.20.12",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"globby": "11.1.0",
"jest": "29.7.0",
"nx": "14.5.4",
"postcss": "^8.4.33",
"prettier": "^2.6.2",
"tailwindcss": "^3.4.1",
"ts-jest": "29.1.1",
"ts-node": "~10.8.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-tsconfig-paths": "^4.3.1"
},
"workspaces": [
"libs/*"
],
"overrides": {
"@remix-run/server-runtime": "^2.6.0"
}
}