-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.37 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
{
"name": "github-ui-clone",
"description": "This app contains an UI clone (partial) from GitHub application",
"version": "1.0.0",
"main": "index.tsx",
"repository": "https://github.com/leoronne/github-ui-clone",
"author": "Leonardo Ronne <leoronne@gmail.com>",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.11.2",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.1",
"date-fns": "^2.16.1",
"history": "^5.0.0",
"react": "^17.0.1",
"react-calendar-heatmap": "^1.8.1",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "^4.0.1",
"react-toastify": "^6.2.0",
"react-use": "^15.3.4",
"styled-components": "^5.2.1",
"typescript": "^4.1.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-calendar-heatmap": "^1.6.2",
"@types/react-icons": "^3.0.0",
"@types/react-router-dom": "^5.1.6",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-eslint": "^10.0.3",
"babel-plugin-root-import": "^6.6.0",
"customize-cra": "^1.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.0.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"react-app-rewired": "^2.1.8"
}
}