-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.86 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.86 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "remix-app-template",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"platform": "node",
"scripts": {
"build": "run-s build:*",
"dev": "run-p dev:*",
"checks": "run-p lint typecheck stats",
"dev:server": "NODE_ENV=development node -r ./build/telemStart.js ./build/server.js --require ./node_modules/dotenv/config",
"build:remix": "remix build",
"dev:build": "cross-env NODE_ENV=development npm run build:server && npm run build:entry",
"build:server": "esbuild --platform=node --format=cjs ./server.ts --outdir=build",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:css": "tailwindcss -i ./app/styles/main.css -o ./app/tailwind.css --watch",
"build:css": "tailwindcss -i ./app/styles/main.css -o ./app/tailwind.css",
"build:entry": "esbuild --platform=node --format=cjs ./telemStart.ts --outdir=build",
"format": "prettier --write .",
"start": "cross-env NODE_ENV=production node -r ./build/telemStart.js ./build/server.js",
"stats": "loc --exclude package-lock.json app/tailwind.css",
"build:sanity": "cd sanity-studio && npm i && sanity build -y && cp -r ./dist ../public/studio",
"lint": "eslint . --fix",
"typecheck": "prisma generate && tsc -b",
"remix": "remix",
"prisma:generate": "prisma generate"
},
"dependencies": {
"@aws-sdk/client-s3": "3.113.0",
"@mdx-js/mdx": "^2.1.1",
"@opentelemetry/api": "^1.2.0",
"@opentelemetry/auto-instrumentations-node": "^0.33.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.33.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.33.0",
"@opentelemetry/instrumentation-express": "^0.31.0",
"@opentelemetry/instrumentation-http": "^0.33.0",
"@opentelemetry/sdk-node": "^0.33.0",
"@portabletext/react": "1.0.6",
"@prisma/client": "4.2.1",
"@prisma/instrumentation": "^4.3.1",
"@remix-run/express": "^1.19.3",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "1.19.3",
"@remix-run/server-runtime": "1.19.3",
"@sanity/groq-store": "0.4.0",
"@sanity/image-url": "1.0.1",
"@types/bcrypt": "^5.0.0",
"@types/ioredis": "^4.28.10",
"@types/node": "^17.0.23",
"@types/react-grid-layout": "^1.3.2",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.17.3",
"express-prometheus-middleware": "^1.2.0",
"fathom-client": "3.5.0",
"framer-motion": "^6.2.10",
"front-matter": "^4.0.2",
"fs.promises.exists": "^1.1.3",
"history": "^5.3.0",
"invariant": "^2.2.4",
"ioredis": "^5.0.3",
"isbot": "^3.4.5",
"mdx-bundler": "9.0.0",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"path-to-regexp": "6.2.1",
"picosanity": "4.0.0",
"prom-client": "^13.2.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-grid-layout": "^1.3.4",
"react-icons": "^4.3.1",
"react-resizable": "^3.0.4",
"react-syntax-highlighter": "15.5.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"recharts": "^2.1.9",
"rehype-autolink-headings": "^6.1.1",
"rehype-prism-plus": "^1.3.2",
"rehype-raw": "^6.1.1",
"rehype-remove-empty-paragraph": "^0.2.4",
"rehype-slug": "^5.0.1",
"remark-collapse": "^0.1.2",
"remark-gfm": "^3.0.1",
"remark-toc": "^8.0.1",
"remix": "^1.19.3",
"remix-auth": "^3.3.0",
"remix-auth-form": "^1.2.0",
"remix-image": "^1.3.3",
"remix-redis-session": "^0.0.11",
"remix-themes": "^1.1.6",
"remix-utils": "^3.3.0",
"sharp": "^0.30.3",
"spin-delay": "^1.1.0",
"stripe": "^8.215.0",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "1.19.3",
"@sanity/cli": "^2.30.6",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/compression": "^1.7.2",
"@types/cors": "2.8.12",
"@types/express-prometheus-middleware": "^1.2.1",
"@types/morgan": "^1.9.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-syntax-highlighter": "15.5.3",
"@types/sharp": "^0.30.1",
"eslint": "^8.12.0",
"eslint-config-galex": "^3.6.5",
"prettier": "2.6.2",
"prisma": "4.2.1",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=14"
}
}