-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.56 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
{
"packageManager": "[email protected]",
"resolutions": {
"babel-plugin-relay": "^13.0.2"
},
"private": true,
"scripts": {
"dev": "run-p 'dev:relay' 'server'",
"dev:relay": "relay-compiler --watch",
"prod": "run-s 'build' 'server:prod'",
"build": "run-p 'build:**'",
"build:relay": "relay-compiler",
"build:client": "vite build --outDir dist/client",
"build:server": "vite build --outDir dist/server --ssr src/entry-server.tsx --emptyOutDir",
"relay": "relay-compiler",
"server": "esno ./server",
"server:prod": "cross-env NODE_ENV=production esno ./server",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.[jt]s?(x)\"",
"schema": "exitzero graphql-codegen --config config.yml"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@hookform/resolvers": "^2.8.8",
"@loadable/component": "^5.15.2",
"@vitejs/plugin-react": "^1.1.4",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"graphql": "^16.3.0",
"h3": "^0.3.9",
"http-proxy-middleware": "^2.0.2",
"js-base64": "^3.7.2",
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"matcher": "^5.0.0",
"node-fetch": "^3.2.0",
"ohmyfetch": "^0.4.15",
"react": "rc",
"react-dom": "rc",
"react-error-boundary": "^3.1.4",
"react-helmet-async": "^1.2.2",
"react-hook-form": "^7.27.0",
"react-relay": "^13.0.2",
"react-relay-network-modern": "^6.2.1",
"react-ssr-prepass": "^1.5.0",
"react-virtuoso": "^2.6.0",
"regenerator-runtime": "^0.13.9",
"relay-runtime": "^13.0.2",
"serve-static": "^1.14.2",
"typescript": "^4.5.5",
"valtio": "^1.3.0",
"vite": "^2.7.13",
"vite-plugin-ssr": "^0.3.51",
"vite-ssr": "^0.15.0",
"whatwg-fetch": "^3.6.2",
"yarr": "^2.0.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/runtime": "^7.17.0",
"@graphql-codegen/cli": "^2.5.0",
"@graphql-codegen/schema-ast": "^2.4.1",
"@types/js-cookie": "^3.0.1",
"@types/loadable__component": "^5.13.4",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.15",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-helmet-async": "^1.0.3",
"@types/react-relay": "^13.0.1",
"@types/relay-runtime": "^13.0.1",
"@types/serve-static": "^1.13.10",
"autoprefixer": "^10.4.2",
"esno": "^0.14.0",
"exitzero": "^1.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"relay-compiler": "^13.0.2",
"tailwindcss": "^3.0.20",
"vite-plugin-relay": "^1.0.7"
}
}