-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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
{
"name": "readlist-web",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"format": "run-s format:*",
"format:eslint": "eslint --fix \"**/*.{ts,tsx}\"",
"format:prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"gen": "run-s gen:*",
"gen:schema": "apollo schema:download ./src/types/schema.json --endpoint=http://localhost:9000/graphql",
"gen:types": "apollo client:codegen ./src/types/generated-types.ts --target=typescript --outputFlat --passthroughCustomScalars",
"lint": "run-s lint:*",
"lint:eslint": "eslint --quiet \"**/*.{ts,tsx}\"",
"lint:prettier": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"prepare": "husky install",
"start": "BROWSER=none react-scripts start",
"test": "react-scripts test",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@apollo/client": "^3.3.13",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"graphql": "^15.5.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^6.15.5",
"react-scripts": "4.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"apollo": "^2.33.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.3",
"typescript": "^4.4.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix"
]
}
}