forked from ondanieldev/wellets-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.76 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
{
"name": "wellets-frontend",
"version": "1.3.0",
"author": {
"email": "me@ondaniel.com.br",
"name": "Daniel Oliveira",
"url": "https://homepages.dcc.ufmg.br/~oliveiradaniel/"
},
"description": "Manage your money placed in different portfolios.",
"homepage": "https://wellets.ondaniel.com.br/",
"license": "MIT",
"repository": {
"url": "https://github.com/stemDaniel/wellets-frontend/",
"type": "git"
},
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@unform/core": "^2.1.6",
"@unform/web": "^2.1.6",
"axios": "^0.21.1",
"chakra-react-select": "^3.1.2",
"csstype": "^3.0.8",
"date-fns": "^2.28.0",
"formik": "^2.2.9",
"framer-motion": "^4",
"jest": "^27.5.1",
"query-string": "^7.1.1",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^16.13.1",
"react-fontawesome": "^1.7.1",
"react-horizontal-scrolling-menu": "^0.7.10",
"react-icons": "^4.2.0",
"react-jss": "^10.9.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.0",
"recharts": "^2.1.8",
"styled-components": "^5.2.3",
"yup": "^0.32.9"
},
"scripts": {
"prepare": "husky install",
"start": "react-scripts start",
"dev": "react-scripts start NODE_ENV=development",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "eslint --ext .ts,.tsx src --fix",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx}": "yarn lint --fix"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/date-fns": "^2.6.0",
"@types/jest": "^27.4.1",
"@types/node": "^12.0.0",
"@types/ramda": "^0.28.1",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.8",
"@types/react-fontawesome": "^1.6.4",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
}
}