-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"npm run start\"",
"start": "TZ=UTC wrangler pages dev --compatibility-flags=nodejs_compat --compatibility-date=2023-06-21 ./public",
"typecheck": "tsc",
"predeploy": "npm run build",
"deploy": "wrangler pages deploy --project-name request-shadowing-ui --branch main --commit-dirty=true public",
"tail": "wrangler pages deployment tail --project-name request-shadowing-ui"
},
"dependencies": {
"@datadog/browser-rum": "^4.47.0",
"@heroicons/react": "^2.0.18",
"@local/schema": "file:../schema",
"@neondatabase/serverless": "^0.5.6",
"@remix-run/cloudflare": "^1.19.1",
"@remix-run/cloudflare-pages": "^1.19.1",
"@remix-run/css-bundle": "^1.19.1",
"@remix-run/react": "^1.19.1",
"classnames": "^2.3.2",
"daisyui": "^3.5.0",
"date-fns": "^2.30.0",
"isbot": "^3.6.8",
"jsondiffpatch": "^0.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"recharts": "^2.7.2",
"remix-utils": "^6.6.0",
"shell-quote": "^1.8.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.19.0",
"@remix-run/dev": "^1.19.1",
"@remix-run/eslint-config": "^1.19.1",
"@types/pg": "^8.10.2",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/shell-quote": "^1.7.2",
"eslint": "^8.38.0",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.4",
"wrangler": "^3.22.2"
},
"engines": {
"node": ">=16.13.0"
}
}