generated from danthegoodman1/NodeExpressRemixTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.55 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
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
{
"name": "bun-express-remix-template",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "NODE_ENV=production remix build",
"dev": "remix dev --manual -c \"tsx watch src/index.ts\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "NODE_ENV=production tsx src/index.ts",
"typecheck": "tsc"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.496.0",
"@aws-sdk/client-ses": "^3.509.0",
"@axiomhq/pino": "^1.0.0-rc.1",
"@clerk/remix": "3.1.13",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.18",
"@markdoc/markdoc": "^0.4.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/css-bundle": "^2.4.1",
"@remix-run/express": "^2.5.1",
"@remix-run/node": "^2.4.1",
"@remix-run/react": "^2.4.1",
"@remix-run/server-runtime": "^2.5.0",
"@resvg/resvg-js": "^2.6.0",
"adm-zip": "^0.5.10",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"googleapis": "^131.0.0",
"hono": "^3.12.6",
"isbot": "^3.6.8",
"js-yaml": "^4.1.0",
"pino": "^8.17.2",
"pino-axiom": "^1.0.97",
"pino-pretty": "^10.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"remix": "^2.5.1",
"remix-auth": "^3.6.0",
"remix-auth-email-link": "^2.1.1",
"remix-auth-google": "^2.0.0",
"remix-auth-oauth2": "^1.11.1",
"remix-hono": "^0.0.15",
"remix-utils": "^7.5.0",
"satori": "^0.10.11",
"shiki": "^0.14.7",
"source-map-support": "^0.5.21",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"stripe": "^14.13.0",
"tsx": "^4.7.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@remix-run/dev": "^2.4.1",
"@types/adm-zip": "^0.5.5",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.17",
"@types/js-yaml": "^4.0.9",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/source-map-support": "^0.5.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"bun-types": "^1.0.24",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"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",
"tailwindcss": "^3.4.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}