-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.14 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
{
"name": "research-front",
"version": "1.2.0",
"description": "Research Dashboard - System to display information extracted from professors' Lattes curriculum.",
"license": "MIT",
"author": "CInCoders <[email protected]> (https://cincoders.cin.ufpe.br)",
"homepage": "/research",
"bugs": {
"url": "https://github.com/cincoders/research-front/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cincoders/research-front"
},
"scripts": {
"start": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"lint": "eslint \"{src,apps,libs,test}/*/.ts\" --fix",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@cincoders/cinnamon": "^1.2.0",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.5.0",
"@mui/x-data-grid": "^5.12.1",
"axios": "^1.6.5",
"keycloak-js": "^18.0.0",
"oidc-client-ts": "^2.2.4",
"react": "18.1",
"react-dom": "18.1",
"react-oidc-context": "^2.2.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/react-dom": "^18.0.9",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"overrides": {
"@svgr/webpack": "^6.2.1",
"semver": "^7.5.3"
},
"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"
]
}
}