-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "dashgo",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --ignore-unknown --config ./prettier.config.js",
"lint": "eslint --quiet --fix './src/**/*.{ts,tsx}'",
"prepare": "husky install",
"postinstall": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.7.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@hookform/resolvers": "^2.8.5",
"apexcharts": "^3.32.0",
"axios": "^0.24.0",
"faker": "^5.5.3",
"framer-motion": "^4",
"miragejs": "^0.1.43",
"next": "12.0.7",
"react": "17.0.2",
"react-apexcharts": "^1.3.9",
"react-dom": "17.0.2",
"react-hook-form": "^7.22.1",
"react-icons": "^4.3.1",
"react-query": "^3.34.4",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@callstack/eslint-config": "^12.0.1",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/faker": "^5.5.9",
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"@types/react-icons": "^3.0.0",
"@types/uuid": "^8.3.3",
"eslint": "^8.4.1",
"eslint-config-next": "12.0.7",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"typescript": "4.5.3"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"yarn lint",
"yarn format"
]
}
}