-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
90 lines (90 loc) · 3.21 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "sortlog",
"version": "1.0.0",
"scripts": {
"dev": "yarn prettier && next dev",
"dev7200": "yarn prettier && next dev -p 7200",
"pre-commit": "yarn prettier && yarn lint && yarn typecheck && yarn test",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"lint": "next lint --fix",
"prettier": "prettier -c .prettierrc \"src/{pages,store,components}/**/*.{js,jsx,ts,tsx}\" --write",
"test": "jest --colors",
"test:watch": "jest --colors --watch",
"coverage": "jest --coverage",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.6",
"@mui/styled-engine-sc": "^5.10.6",
"@mui/styles": "^5.10.8",
"@mui/x-data-grid": "^5.17.6",
"@mui/x-data-grid-generator": "^5.17.6",
"@mui/x-date-pickers": "^5.0.4",
"@mui/x-date-pickers-pro": "^5.0.3",
"@react-pdf/renderer": "^3.0.1",
"@reduxjs/toolkit": "^1.8.1",
"@types/numeral": "^2.0.2",
"@types/prop-types": "^15.7.5",
"@types/qrcode": "^1.5.0",
"aws-amplify": "^4.3.37",
"axios": "^0.27.2",
"date-fns": "^2.29.3",
"dayjs": "^1.11.5",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^12.3.1",
"nextjs-progressbar": "^0.0.14",
"numeral": "^2.0.6",
"prop-types": "^15.8.1",
"qr-scanner": "^1.4.1",
"qrcode": "^1.5.1",
"react": "^18.0.0",
"react-cropper": "^2.1.8",
"react-dom": "^18.0.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.0",
"react-i18next": "^11.18.6",
"react-icons": "^4.6.0",
"react-pdf": "^6.1.0",
"react-qr-reader": "^3.0.0-beta-1",
"react-qr-scanner": "^1.0.0-alpha.11",
"react-redux": "^8.0.2",
"sass": "^1.54.9",
"simplebar": "^5.3.6",
"simplebar-react": "^2.4.3",
"styled-components": "^5.3.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.17.9",
"@svgr/webpack": "^6.2.1",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^29.0.3",
"@types/node": "^17.0.30",
"@types/react": "18.0.1",
"@types/react-redux": "^7.1.24",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"typescript": "4.6.2"
}
}