-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
102 lines (102 loc) · 3.42 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
{
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"prepare": "husky install",
"prebuild": "test \"$CI\" = true && npx pnpm install -r --store=node_modules/.pnpm-store || echo skipping pnpm install",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint \"src/**/*.{tsx,ts}\" && tsc",
"prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint:fix": "eslint --ext .jsx,.js,.ts,.tsx --fix src/",
"test": "jest",
"pre-commit": "lint-staged",
"graphql:download:schema": "node scripts/download-graphql-schema.mjs",
"graphql:generate:typescript": "graphql-codegen --config codegen.yml",
"graphql:all": "npm run graphql:download:schema && npm run graphql:generate:typescript"
},
"lint-staged": {
"*.{jsx,tsx,ts,js,md,json}": [
"prettier --write"
],
"*.{jsx,tsx,ts,js}": [
"eslint --fix"
]
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^5.0.0-beta.4",
"@material-ui/styled-engine-sc": "^5.0.0-beta.5",
"final-form": "^4.20.4",
"graphql": "^15.6.1",
"graphql-combine-query": "^1.2.3",
"history": "^5.0.1",
"jotai": "^1.3.8",
"lodash-es": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.7",
"react-final-form-listeners": "^1.0.3",
"react-icons": "^4.3.1",
"react-router-dom": "^6.0.0-beta.6",
"rifm": "^0.12.0",
"styled-components": "^5.3.1",
"urql": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@graphql-codegen/cli": "^1.21.8",
"@graphql-codegen/introspection": "^1.18.2",
"@graphql-codegen/typescript": "^1.23.0",
"@rollup/plugin-graphql": "^1.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.175",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-router": "^5.1.17",
"@types/styled-components": "^5.1.15",
"@types/testing-library__jest-dom": "^5.14.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@urql/devtools": "^2.0.3",
"@vitejs/plugin-react": "^1.0.2",
"@vitejs/plugin-react-refresh": "^1.3.6",
"babel-jest": "^27.2.5",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"isomorphic-unfetch": "^3.1.0",
"jest": "^27.2.5",
"jest-extended": "^0.11.5",
"lint-staged": "^11.2.2",
"node-fetch": "^2.6.5",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.4",
"rollup": "^2.58.0",
"typescript": "^4.4.3",
"vite": "^2.6.5",
"vite-plugin-babel-macros": "^1.0.5",
"vite-plugin-notifier": "^0.1.5",
"vite-plugin-svgr": "^0.3.0",
"vite-react-jsx": "^1.1.2",
"wonka": "^4.0.15"
}
}