-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.2 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
103
{
"name": "vaccine-scheduler-frontend",
"version": "0.1.0",
"private": true,
"repository": "https://github.com/Guilherme-Farias/vaccine-scheduler-backend",
"author": "Guilherme Farias <guicfarias11@gmail.com>",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll false",
"test:watch": "react-scripts test",
"test:coverage": "react-scripts test --coverage --watchAll false",
"eject": "react-scripts eject",
"generate": "plop --plopfile generators/plopfile.js",
"prepare": "husky install",
"lint": "eslint src --fix --max-warnings=0",
"sb": "start-storybook -p 6006 -s public",
"sb:build": "build-storybook -s public"
},
"dependencies": {
"@reach/dialog": "^0.17.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.25",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"axios": "^0.26.1",
"date-fns": "^2.28.0",
"formik": "^2.2.9",
"joi": "^17.6.0",
"polished": "^4.2.2",
"react": "^18.0.0",
"react-datepicker": "^4.7.0",
"react-dom": "^18.0.0",
"react-icons": "^4.3.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-toastify": "^8.2.0",
"styled-components": "^5.3.5",
"typescript": "^4.4.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@faker-js/faker": "^6.2.0",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/node-logger": "^6.4.22",
"@storybook/preset-create-react-app": "^4.1.0",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@types/react-datepicker": "^4.4.0",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.3",
"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",
"eslint-plugin-storybook": "^0.5.11",
"husky": "^7.0.4",
"jest-styled-components": "^7.0.8",
"lint-staged": "^12.4.0",
"plop": "^3.0.5",
"prettier": "^2.6.2",
"webpack": "^5.72.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts(x)?",
"!src/**/*.stories.ts(x)?",
"!src/errors/**",
"!src/styles/**",
"!src/routes/**",
"!src/services/**",
"!src/types/**",
"!src/utils/**/index.ts"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}