forked from os2display/display-admin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.07 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
{
"name": "admin",
"version": "0.1.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.1.14",
"@hello-pangea/dnd": "^16.0.0",
"@paciolan/remote-component": "^2.11.0",
"@reduxjs/toolkit": "^1.6.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"bootstrap": "^5.0.2",
"dayjs": "^1.10.7",
"dompurify": "^2.3.3",
"eslint-plugin-jsdoc": "^35.4.3",
"i18next": "^21.6.14",
"lodash.find": "^4.2.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lodash.uniqwith": "^4.5.0",
"os2display-grid-generator": "^1.0.8",
"prop-types": "^15.7.2",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-app-rewired": "^2.1.8",
"react-bootstrap": "^1.6.1",
"react-color-palette": "^6.1.0",
"react-dayjs": "^0.3.2",
"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.1.12",
"react-paginate": "^8.1.3",
"react-quill": "^1.3.5",
"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": "^8.1.0",
"rrule": "^2.6.8",
"typescript": "^4.4.2",
"ulid": "^2.3.0"
},
"scripts": {
"lint:js": "eslint --ext .js --ext .jsx ./src",
"lint:js:fix": "eslint --ext .js --ext .jsx --fix ./src",
"lint:scss": "stylelint \"./src/**/*.scss\"",
"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",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
"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": {
"babel-eslint": "^10.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.23.4",
"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",
"react-scripts": "4.0.3",
"sass": "^1.35.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"
}
}