-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.58 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
{
"name": "@archival-iiif/viewer-react",
"version": "3.1.0",
"license": "MIT",
"homepage": ".",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@iiif/vocabulary": "1.0.22",
"@mui/icons-material": "5.10.3",
"@mui/material": "^5.10.3",
"buffer": "^6.0.3",
"chardet": "^1.5.0",
"core-js": "^3.21.1",
"dompurify": "^2.4.0",
"filesize": "^10.0.6",
"i18next": "^22.4.9",
"manifesto.js": "^4.2.14",
"openseadragon": "^4.0.0",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.4",
"throttle-debounce": "^5.0.0",
"video.js": "^7.20.2"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"@types/dompurify": "^2.3.4",
"@types/openseadragon": "^3.0.3",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/throttle-debounce": "^5.0.0",
"@types/video.js": "^7.3.46",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"copyfiles": "2.4.1",
"css-loader": "^6.7.1",
"dotenv": "^16.0.2",
"html-webpack-plugin": "^5.5.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1"
},
"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/**/*.png\" \"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",
"IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"IE 11"
]
},
"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"
}
}