-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 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
{
"name": "1bite",
"author": "AstrOOnauta (https://github.com/AstrOOnauta)",
"description": "Um sistema de cardápio digital para o seu negócio.",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier": "prettier src --check .",
"lint": "next lint",
"lint-staged": "lint-staged",
"husky-install": "husky install",
"type-check": "tsc --project tsconfig.json --pretty --noEmit && eslint --fix . && prettier --write .",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@chakra-ui/react": "2.6.0",
"@emotion/react": "11.10.8",
"@emotion/styled": "11.10.8",
"@types/react-datepicker": "4.15.0",
"axios": "1.4.0",
"date-fns": "2.30.0",
"framer-motion": "10.12.4",
"next": "13.3.2",
"react": "18.2.0",
"react-datepicker": "4.16.0",
"react-dom": "18.2.0",
"react-hook-form": "7.45.3",
"react-icons": "4.10.1",
"react-query": "3.39.3",
"react-select": "5.7.4",
"recharts": "2.7.3"
},
"devDependencies": {
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@typescript-eslint/eslint-plugin": "5.59.1",
"cypress": "12.9.0",
"eslint": "8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "13.3.2",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-sonarjs": "0.19.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"typescript": "5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,md,html}": [
"eslint --fix",
"prettier --write"
]
}
}