-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.52 KB
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
{
"name": "@archival-iiif/viewer-react",
"version": "4.0.0",
"license": "MIT",
"homepage": ".",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.0",
"@iiif/vocabulary": "^1.0.31",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"buffer": "^6.0.3",
"chardet": "^2.1.1",
"core-js": "^3.49.0",
"dompurify": "^3.3.3",
"events": "^3.3.0",
"filesize": "^11.0.15",
"i18next": "^25.10.10",
"manifesto.js": "^4.3.2",
"openseadragon": "^5.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.6.6",
"throttle-debounce": "^5.0.2",
"video.js": "^8.23.7"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@types/events": "^3.0.3",
"@types/node": "^24.12.2",
"@types/openseadragon": "^4.1.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/throttle-debounce": "^5.0.2",
"babel-loader": "^10.1.1",
"copy-webpack-plugin": "^14.0.0",
"copyfiles": "2.4.1",
"css-loader": "^7.1.4",
"dotenv": "^17.4.1",
"html-webpack-plugin": "^5.6.6",
"rimraf": "^6.1.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.7",
"typescript": "^6.0.2",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"scripts": {
"start": "webpack-dev-server --open --env development --mode development --hot",
"build": "webpack --mode production",
"build:react": "rimraf ./dist/* && tsc -p tsconfig.prod.json && copyfiles -u 1 \"src/**/*.css\" \"src/**/*.json\" ./dist/",
"build:dist": "webpack --mode production && node dist-pkg/buildDistPkg.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/archival-IIIF/viewer.git"
},
"keywords": [
"IIIF"
],
"author": "Archival IIIF",
"bugs": {
"url": "https://github.com/archival-IIIF/viewer/issues"
}
}