-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"name": "david-j-davis-code-sample-graphql-typescript-react-app",
"version": "1.0.0",
"main": "index.js",
"author": "David Davis <davidjamesdavis.djd@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"codegen": "graphql-codegen",
"format": "yarn prettier --write .",
"test": "yarn jest ./src/__tests__"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/lab": "^5.0.0-alpha.120",
"@mui/material": "^5.11.9",
"@mui/styled-engine-sc": "^5.11.9",
"@mui/system": "^5.11.9",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"styled-components": "^5.3.6",
"urql": "^3.0.3"
},
"devDependencies": {
"@babel/plugin-syntax-flow": "^7.18.6",
"@graphql-codegen/cli": "^3.0.0",
"@graphql-codegen/client-preset": "^2.0.0",
"@jest/globals": "^29.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"babel-jest": "^29.4.3",
"jest": "^29.4.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"vite": "^4.1.2"
},
"engines": {
"node": "16.x",
"yarn": "^1.22.19",
"npm": "please-use-yarn"
}
}