-
-
Notifications
You must be signed in to change notification settings - Fork 558
/
Copy pathpackage.json
113 lines (113 loc) · 3.49 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
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
{
"name": "web",
"version": "0.0.0",
"private": true,
"scripts": {
"relay": "relay-compiler",
"start": "webpack serve --mode=development",
"build": "webpack --mode=production",
"deploy": "node ../scripts/web-deploy",
"web:relay": "yarn workspace web run relay",
"web:start": "yarn workspace web run start",
"web:build": "yarn workspace web run build",
"web:deploy": "yarn workspace web run deploy"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@cloudflare/kv-asset-handler": "^0.2.0",
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.3.1",
"@mui/lab": "^5.0.0-alpha.66",
"@mui/material": "^5.3.1",
"history": "^5.2.0",
"path-to-regexp": "^6.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-relay": "13.0.1",
"relay-runtime": "^13.0.1"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.16.9",
"@cloudflare/workers-types": "^3.3.1",
"@emotion/babel-plugin": "^11.7.2",
"@emotion/eslint-plugin": "^11.7.0",
"@jest/types": "^27.4.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@types/babel__core": "^7.1.18",
"@types/babel__plugin-transform-runtime": "^7.9.2",
"@types/babel__preset-env": "^7.9.2",
"@types/gtag.js": "^0.0.8",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.12",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-relay": "^13.0.0",
"@types/relay-compiler": "^8.0.2",
"@types/relay-runtime": "^13.0.0",
"@types/webpack-dev-server": "^4.7.2",
"@types/webpack-env": "^1.16.3",
"@types/webpack-manifest-plugin": "^3.0.5",
"babel-loader": "^8.2.3",
"babel-plugin-import": "^1.13.3",
"babel-plugin-relay": "^13.0.1",
"browserslist": "^4.19.1",
"copy-webpack-plugin": "^10.2.1",
"cross-spawn": "^7.0.3",
"dotenv": "^14.3.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"got": "^12.0.1",
"graphql": "^16.2.0",
"html-webpack-plugin": "^5.5.0",
"http-proxy-middleware": "^2.0.2",
"ignore-webpack-plugin": "^0.3.0",
"inline-chunk-html-plugin": "^1.1.1",
"react-refresh": "^0.11.0",
"relay-compiler": "^13.0.1",
"relay-config": "^12.0.1",
"source-map-loader": "^3.0.1",
"terser-webpack-plugin": "^5.3.0",
"type-fest": "^2.10.0",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "4.7.3",
"webpack-manifest-plugin": "^4.1.1"
},
"sideEffects": false,
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"relay": {
"schema": "../api/schema.graphql",
"src": ".",
"language": "typescript",
"artifactDirectory": "./queries",
"eagerEsModules": true
}
}