-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.71 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
{
"name": "github-spa",
"version": "0.0.1",
"description": "A single page application that displays a list of Github users by using the Github public API",
"homepage": ".",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"generate-mock-data": "node scripts/generateGithubData.js",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smasztarowski/github-spa.git"
},
"keywords": [
"react",
"redux",
"typescript",
"api",
"github",
"spa"
],
"author": "Sebastian Masztarowski",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/smasztarowski/github-spa/issues"
},
"dependencies": {
"@material-ui/core": "^4.11.1",
"@material-ui/data-grid": "^4.0.0-alpha.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@reduxjs/toolkit": "^1.4.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.2.2",
"axios": "^0.21.0",
"localforage": "^1.9.0",
"localforage-sessionstoragewrapper": "^1.3.1",
"normalize.css": "^8.0.1",
"parse-link-header": "^1.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-loader-spinner": "^3.1.14",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-toast-notifications": "^2.4.0",
"redux-logger": "^3.0.6",
"reselect": "^4.0.0",
"styled-components": "^5.2.1",
"typescript": "^4.1.2",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@types/parse-link-header": "^1.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-loader-spinner": "^3.1.2",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.6",
"@types/react-toast-notifications": "^2.4.0",
"@types/redux-logger": "^3.0.8",
"@types/styled-components": "^5.1.4",
"commitizen": "^4.2.2",
"crypto-random-string": "^3.3.0",
"cz-conventional-changelog": "^3.3.0",
"lorem-ipsum": "^2.0.3",
"random-email": "^1.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"styled-components": "^5"
}
}