-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 1.77 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
{
"name": "taxes",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@chakra-ui/theme": "^2.1.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@hookform/resolvers": "^2.9.4",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"date-fns": "^2.28.0",
"decimal.js": "^10.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.3.0",
"framer-motion": "^6.4.2",
"gh-pages": "^4.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-day-picker": "^8.0.7",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.9.1",
"react-hook-form": "^7.33.1",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-router-dom": "6",
"react-scripts": "^5.0.1",
"rehype-raw": "^6.1.1",
"typescript": "^4.7.4",
"yup": "^0.32.11"
},
"scripts": {
"predeploy": "yarn run build",
"deploy": "gh-pages -b gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier"
],
"plugins": [
"prettier",
"react-hooks"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "https://notgiorgi.github.io/virtual-person-taxes/"
}