-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.59 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
{
"name": "unsplash-search",
"version": "1.0.0",
"license": "MIT",
"description": "",
"keywords": [],
"main": "src/index.tsx",
"dependencies": {
"@chakra-ui/core": "0.7.0",
"@craco/craco": "^5.6.4",
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"@testing-library/jest-dom": "5.3.0",
"@testing-library/react": "10.0.2",
"@typed/curry": "^1.0.1",
"@types/lodash": "^4.14.149",
"@types/react-dom": "16.9.5",
"emotion-theming": "10.0.27",
"lodash": "^4.17.15",
"memoize-one": "^5.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-query": "1.2.1",
"react-query-devtools": "^1.1.0",
"react-scripts": "3.4.1",
"react-use": "^14.1.1",
"react-virtual": "^2.1.10",
"react-window": "^1.8.5",
"reinspect": "^1.1.0",
"swr": "^0.2.0",
"use-context-selector": "^1.1.1",
"use-debounce": "^3.4.1",
"use-deep-compare-effect": "^1.3.1",
"wretch": "1.7.1",
"yarn": "^1.22.4"
},
"devDependencies": {
"@types/react": "16.9.32",
"@types/react-query": "^1.1.2",
"@types/react-window": "^1.8.1",
"@types/scheduler": "^0.16.1",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-app": "^5.2.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"prettier": "^1.19.1",
"prettier-config-standard": "^1.0.1",
"serve": "^11.3.0",
"typescript": "3.8.3"
},
"scripts": {
"dev": "react-scripts start",
"start": "yarn build && serve -s build",
"build": "react-scripts build --profile",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": [],
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"no-unused-vars": 0
}
}
]
}
}