-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
118 lines (118 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
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
{
"name": "item-display",
"version": "0.1.0",
"private": true,
"dependencies": {
"@aws-amplify/cli-extensibility-helper": "^3.0.1",
"@aws-amplify/ui-react": "^4.4.3",
"@blueprintjs/core": "^4.17.8",
"@blueprintjs/icons": "^4.14.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.125",
"@mui/material": "^5.11.16",
"@mui/styles": "^5.11.16",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.32",
"@types/react-dom": "^18.0.11",
"assign-deep": "^1.0.1",
"aws-amplify": "^5.0.23",
"aws-amplify-react": "^5.1.9",
"bootstrap": "^5.2.3",
"cypress-file-upload": "^5.0.8",
"deep-object-diff": "^1.1.9",
"flv.js": "^1.6.2",
"hls.js": "^1.3.5",
"html-react-parser": "^3.0.15",
"jquery": "^3.6.4",
"js-levenshtein": "^1.1.6",
"mirador": "~3.3.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"npm-check-updates": "^16.10.0",
"patch-package": "^6.5.1",
"pdfjs-dist": "^2.14.305",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-3d-viewer": "^1.0.12",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.9.4",
"react-fontawesome": "^1.7.1",
"react-ga4": "^2.1.0",
"react-helmet": "^6.1.0",
"react-quill": "^2.0.0",
"react-router-dom": "^6.10.0",
"react-scripts": "^5.0.1",
"react-share": "^4.4.1",
"react-slick": "^0.29.0",
"reactstrap": "^9.1.8",
"sanitize-html": "^2.10.0",
"sass": "^1.60.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.4",
"slick-carousel": "^1.8.1",
"typescript": "^5.0.3",
"uuid": "^9.0.0",
"x3dom": "^1.8.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts --max_old_space_size=8192 build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/uuid": "^9.0.1",
"cypress": "^5.6.0",
"cypress-localstorage-commands": "^2.2.2",
"husky": "^3.1.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"semantic-ui-css": "git+https://github.com/Semantic-Org/Semantic-UI-CSS.git"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(@react-scripts|react-scripts|decode-uri-component|filter-obj|split-on-first|query-string)/)"
]
}
}