-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"private": true,
"sideEffects": false,
"main": "build/index.js",
"scripts": {
"build": "remix build",
"deploy": "npm run build && wrangler publish",
"dev:remix": "remix watch",
"dev:miniflare": "cross-env NODE_ENV=development miniflare ./build/index.js --watch",
"dev": "remix build && run-p \"dev:*\"",
"start": "cross-env NODE_ENV=production miniflare ./build/index.js",
"postinstall": "remix-esbuild-override"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11",
"@emotion/server": "^11",
"@emotion/styled": "^11",
"@pkasila/graphql-request-fetch": "^1.0.1",
"@pkasila/react-katex": "^1.2.2",
"@remix-run/cloudflare": "^1.6.3",
"@remix-run/cloudflare-workers": "^1.6.3",
"@remix-run/react": "^1.6.3",
"cross-env": "^7.0.3",
"framer-motion": "^6",
"graphql": "^16.5.0",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"remix-auth": "^3.2.2",
"remix-auth-oauth2": "^1.2.2",
"remix-utils": "^3.3.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.10.0",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@remix-run/dev": "^1.6.3",
"@remix-run/eslint-config": "^1.6.3",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"eslint": "^8.15.0",
"miniflare": "^2.4.0",
"npm-run-all": "^4.1.5",
"remix-esbuild-override": "^3.0.4",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14"
}
}