-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 2.91 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
114
115
116
117
118
119
120
121
122
{
"name": "ten-cents",
"version": "0.1.0",
"private": true,
"scripts": {
"api:generate": "graphql-codegen --config codegen.yml",
"build": "craco build",
"eject": "react-scripts eject",
"start": "craco start",
"test": "craco test"
},
"dependencies": {
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@mui/material": "5.10.4",
"@mui/styles": "5.10.3",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "13.0.0",
"graphql": "16.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"urql": "2.0.5",
"web-vitals": "2.1.0"
},
"devDependencies": {
"@craco/craco": "6.2.0",
"@graphql-codegen/cli": "2.12.0",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-urql": "3.7.0",
"@types/react": "18.0.18",
"craco-alias": "3.0.1",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-simple-import-sort": "8.0.0",
"prettier": "2.7.1",
"prettier-plugin-package": "1.3.0",
"typescript": "4.8.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier",
"react-app",
"react-app/jest"
],
"plugins": [
"simple-import-sort"
],
"rules": {
"import/no-default-export": "error",
"import/no-unresolved": "error",
"no-console": "warn",
"no-debugger": "warn",
"no-negated-condition": "warn",
"no-param-reassign": [
"warn",
{
"ignorePropertyModificationsFor": [
"result",
"state"
],
"props": true
}
],
"quotes": [
"error",
"double",
{
"avoidEscape": true
}
],
"react-hooks/exhaustive-deps": "warn",
"react-hooks/rules-of-hooks": "error",
"react/forbid-prop-types": "warn",
"react/jsx-key": "error",
"react/jsx-pascal-case": "error",
"react/jsx-sort-props": "warn",
"react/no-array-index-key": "warn",
"react/no-danger": "warn",
"react/prop-types": "warn",
"react/react-in-jsx-scope": "off",
"simple-import-sort/imports": "warn"
},
"settings": {
"import/resolver": {
"alias": {
"extensions": [
".js",
".ts",
".tsx"
],
"map": [
[
"@",
"./src"
]
]
}
}
}
},
"prettier": {
"printWidth": 160
},
"proxy": "https://api.github.com"
}