-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.99 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
{
"name": "din-go",
"author": "Cleison Pereira",
"version": "0.1.0",
"private": true,
"homepage": "GIT_REPO_URL",
"engines": {
"node": ">=16.15.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"test:w": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.9",
"@chakra-ui/react": "^2.2.9",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@hookform/resolvers": "^2.9.7",
"apexcharts": "^3.35.5",
"axios": "^0.27.2",
"broadcast-channel": "^4.18.0",
"crypto-js": "^4.1.1",
"faunadb": "^4.7.0",
"framer-motion": "^6.5.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"next": "12.2.5",
"next-api-route-middleware": "^1.0.2",
"nookies": "^2.5.2",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.34.2",
"react-icons": "^4.4.0",
"react-query": "^3.39.2",
"react-toastify": "^9.0.8",
"uuid": "^9.0.0",
"yup": "^0.32.11",
"zustand": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@faker-js/faker": "^7.5.0",
"@types/crypto-js": "^4.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cross-env": "^7.0.3",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"husky": "^8.0.1",
"miragejs": "^0.1.45",
"prettier": "^2.7.1",
"typescript": "4.7.4"
}
}