This repository has been archived by the owner on May 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.69 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "daita-interface",
"version": "1.1.0",
"private": true,
"description": "React-based user interface for the DAITA platform.",
"author": "DAITA Technologies",
"license": "All Rights Reserved.",
"keywords": [
"react",
"typescript",
"dashboard",
"frontend",
"interfact"
],
"repository": {
"type": "git",
"url": "https://github.com/daita-technologies/interface.git"
},
"bugs": {
"url": "https://github.com/daita-technologies/interface/issues"
},
"scripts": {
"env": "cross-env DISABLE_ESLINT_PLUGIN=true",
"start": "yarn env react-scripts start",
"build": "yarn env react-scripts build",
"test": "yarn env react-scripts test",
"eject": "yarn env react-scripts eject",
"alex": "alex .",
"prettier:check": "prettier -c **/*.{js,jsx,ts,tsx,json,yml,yaml,css,scss,md}",
"prettier:fix": "prettier -w **/*.{js,jsx,ts,tsx,json,yml,yaml,css,scss,md}",
"lint:check": "yarn alex && yarn prettier:check && npx eslint **/*.{js,ts,jsx,tsx}",
"lint:fix": "yarn alex && yarn prettier:fix && npx eslint **/*.{js,ts,jsx,tsx} --fix"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.42.0",
"@aws-sdk/lib-storage": "^3.42.0",
"@date-io/moment": "^1.3.13",
"@mui/icons-material": "^5.0.3",
"@mui/lab": "^5.0.0-alpha.50",
"@mui/material": "^5.0.3",
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest",
"@mui/styled-engine-sc": "^5.0.3",
"@mui/utils": "^5.6.1",
"@types/crypto-js": "^4.0.2",
"@types/file-saver": "^2.0.4",
"@types/lodash": "^4.14.177",
"@types/node": "17.0.29",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/react-google-recaptcha": "^2.1.3",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.1.7",
"@types/react-virtualized": "^9.21.15",
"@types/react-window": "^1.8.5",
"@types/uuid": "^8.3.4",
"axios": "^0.21.1",
"axios-middleware": "^0.3.1",
"chart.js": "^3.7.1",
"chartjs-plugin-datalabels": "^2.0.0",
"chartjs-plugin-zoom": "^1.2.1",
"crypto-js": "^4.1.1",
"file-saver": "^2.0.5",
"history": "^4.10.1",
"js-base64": "^3.7.2",
"jszip": "^3.9.1",
"konva": "^8.3.10",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"p-limit": "^4.0.0",
"react": "^17.0.2",
"react-chartjs-2": "^4.1.0",
"react-colorful": "^5.6.1",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-google-recaptcha": "^2.1.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.9.0",
"react-infinite-scroll-component": "^6.1.0",
"react-konva": "17.0.2-6",
"react-markdown": "^8.0.3",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-toastify": "^8.1.0",
"react-virtualized": "^9.22.3",
"react-window": "^1.8.7",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.1",
"typescript": "^4.3.2",
"use-image": "^1.0.12",
"uuid": "^9.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"alex": "^10.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.0",
"prettier": "^2.4.1"
},
"resolutions": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest",
"react-error-overlay": "6.0.9"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"engines": {
"node": ">=14.17.5",
"npm": ">=6.14.14"
}
}