-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "instrugo-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"format": "prettier --write \"**/**/*.{js,jsx,ts,tsx,md,mdx,json}\"",
"postinstall": "husky install"
},
"dependencies": {
"@devexpress/dx-react-core": "^3.0.2",
"@devexpress/dx-react-scheduler": "^3.0.2",
"@devexpress/dx-react-scheduler-material-ui": "^3.0.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.8.8",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.80",
"@mui/material": "^5.6.4",
"@stitches/react": "^1.2.8",
"axios": "^0.27.2",
"date-fns": "^2.28.0",
"gapi-script": "^1.2.0",
"next": "12.1.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.30.0",
"react-icons": "^4.3.1",
"react-intl": "^5.25.1",
"react-query": "^3.38.1",
"react-select": "^5.3.1",
"sharp": "^0.30.4",
"zod": "^3.15.1"
},
"devDependencies": {
"@types/node": "17.0.31",
"@types/react": "17.0.39",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"typescript": "4.6.4"
},
"resolutions": {
"@types/react": "17.0.39"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
}
}