-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.39 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": "commissions-portal-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@date-io/date-fns": "^2.14.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.90",
"@mui/material": "^5.8.2",
"@mui/styled-engine-sc": "^5.8.0",
"@mui/x-date-pickers": "^5.0.0-alpha.7",
"@react-oauth/google": "^0.2.6",
"@types/date-fns": "^2.6.0",
"axios": "^1.4.0",
"date-fns": "^2.28.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"jwt-decode": "^3.1.2",
"mui-tel-input": "^3.2.2",
"next": "^14.0.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.3",
"sharp": "^0.30.6",
"styled-components": "^5.3.5"
},
"lint-staged": {
"src/**/*.{ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"src/**/*.{js,jsx}": [
"prettier --write"
]
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"daisyui": "^3.2.1",
"eslint": "8.16.0",
"eslint-config-next": "^14.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.25",
"prettier": "2.7.1",
"tailwindcss": "^3.3.2"
}
}