-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 3.23 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
{
"name": "admin",
"type": "module",
"version": "2.0.0",
"private": true,
"homepage": "admin",
"dependencies": {
"@amcharts/amcharts4": "^4.10.21",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.2.2",
"@hello-pangea/dnd": "^16.0.0",
"@paciolan/remote-component": "^2.11.0",
"@popperjs/core": "^2.11.8",
"@reduxjs/toolkit": "^1.6.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"bootstrap": "^5.0.2",
"dayjs": "^1.10.7",
"dompurify": "^2.3.3",
"focus-trap-react": "^10.2.1",
"i18next": "^21.6.14",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lodash.uniqwith": "^4.5.0",
"os2display-grid-generator": "^1.0.10",
"prop-types": "^15.7.2",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-bootstrap": "^1.6.1",
"react-color-palette": "^6.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^11.4.2",
"react-i18next": "^11.16.1",
"react-images-uploading": "^3.1.2",
"react-multi-select-component": "^4.3.4",
"react-paginate": "^8.1.3",
"react-quill": "^2.0.0",
"react-redux": "^7.2.5",
"react-router": "^5.2.0",
"react-router-dom": "^6.2.1",
"react-select": "^5.2.2",
"react-table": "^7.7.0",
"react-toastify": "^10.0.0",
"react-tooltip": "^5.28.0",
"rrule": "^2.7.2",
"typescript": "^4.4.2",
"ulid": "^2.3.0",
"vite": "^5.2.11"
},
"scripts": {
"lint:js": "eslint --ext .js --ext .jsx ./src",
"lint-actions:js": "eslint --ext .js --ext .jsx ./src --max-warnings=0",
"lint:js:fix": "eslint --ext .js --ext .jsx --fix ./src",
"lint:scss": "stylelint \"./src/**/*.scss\"",
"lint-actions:scss": "stylelint \"./src/**/*.scss\" --max-warnings=0",
"lint:scss:fix": "stylelint --fix \"./src/**/*.scss\"",
"check-coding-standards": "yarn lint:js && yarn lint:scss",
"apply-coding-standards": "yarn lint:js:fix && yarn lint:scss:fix",
"check-coding-standards-actions": "yarn lint-actions:js && yarn lint-actions:scss",
"start": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.12.13",
"babel-eslint": "^10.1.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.4.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "2.3.2",
"prettier-plugin-jsdoc": "^0.3.24",
"sass": "^1.77.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19.0"
}
}