forked from fga-eps-mds/2022-1-schedula-front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.32 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
{
"name": "2022-1-projeto-agenda-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"type-check": "tsc --noEmit",
"test": "jest",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"dependencies": {
"@chakra-ui/react": "^2.2.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"axios": "^0.27.2",
"chakra-react-select": "^4.1.4",
"date-fns": "^2.29.2",
"framer-motion": "^6",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"next": "12.2.2",
"next-auth": "^4.10.3",
"nextjs-progressbar": "^0.0.14",
"react": "18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.33.1",
"react-icons": "^4.4.0",
"react-input-mask": "^2.0.4",
"react-render-if-visible": "^2.1.1",
"react-toastify": "^9.0.5",
"sass": "^1.54.8",
"swr": "^1.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "18.0.6",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.15",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "18.0.6",
"@types/react-input-mask": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-inline-styles": "^1.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-perf": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.0.5",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "4.7.4"
}
}