forked from ProjectMirador/mirador
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 4.38 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
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "mirador",
"version": "3.0.0-beta.7",
"description": "",
"main": "dist/mirador.min.js",
"module": "dist/es/src/index.js",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf ./dist",
"lint": "node_modules/.bin/eslint ./ && npm run lint:translations",
"lint:translations": "node ./scripts/i18n-lint.js",
"server": "node_modules/.bin/http-server --cors",
"test": "npm run build && npm run lint && npm run size && jest -c jest.json",
"test:watch": "jest -c jest.json --watch",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"build:es": "mkdir -p dist/es && cp -r src dist/es && MODULE_FORMAT=es babel dist/es -d dist/es",
"build:cjs": "mkdir -p dist/cjs && cp -r src dist/cjs && MODULE_FORMAT=cjs babel dist/cjs -d dist/cjs",
"build:watch": "webpack --watch --mode=development",
"prepublishOnly": "npm run clean && npm run build:es && npm run build:cjs && npm run build",
"size": "bundlewatch --config bundlewatch.config.json",
"start": "npm run build:dev && concurrently -k \"npm:build:watch\" \"npm:server -- -p 4444\""
},
"license": "Apache-2.0",
"contributors": [
"Drew Winget <[email protected]> (https://aeschylus.net/)",
"Jack Reed <[email protected]> (https://www.jack-reed.com)"
],
"repository": "https://github.com/ProjectMirador/mirador",
"dependencies": {
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.50",
"@researchgate/react-intersection-observer": "^1.0.0",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"deepmerge": "^3.3.0",
"dompurify": "^1.0.11",
"downshift": "^3.2.10",
"i18next": "^17.0.6",
"icomcom-react": "^1.0.1",
"immutable": "^4.0.0-rc.12",
"intersection-observer": "^0.7.0",
"isomorphic-unfetch": "^3.0.0",
"jss": "^10.1.1",
"jss-rtl": "^0.3.0",
"lodash": "^4.17.11",
"manifesto.js": "^4.0.1",
"normalize-url": "^4.2.0",
"openseadragon": "^2.4.2",
"prop-types": "^15.6.2",
"re-reselect": "^3.4.0",
"react-aria-live": "^2.0.5",
"react-beautiful-dnd": "^11.0.4",
"react-copy-to-clipboard": "^5.0.1",
"react-full-screen": "^0.2.4",
"react-i18next": "^10.11.4",
"react-image": "^2.1.3",
"react-mosaic-component": "^3.2.0",
"react-redux": "^7.1.0",
"react-resize-observer": "^1.1.1",
"react-rnd": "^10.1",
"react-sizeme": "^2.6.7",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"redux": "4.0.1",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-regenerator": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bundlewatch": "^0.2.5",
"chalk": "^2.4.2",
"codecov": "^3.5.0",
"concurrently": "^4.1.1",
"core-js": "^3.4.8",
"css-loader": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-react-app": "^3.0.5",
"eslint-loader": "^2.2.1",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"glob": "^7.1.4",
"http-server": "^0.11.1",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"jest-puppeteer": "^4.1.1",
"jsdom": "15.1.1",
"puppeteer": "^1.18.1",
"react": "^16.8.6",
"react-dev-utils": "^9.0.1",
"react-dom": "^16.8.6",
"redux-mock-store": "^1.5.1",
"style-loader": "^0.23.1",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^1.3.0",
"unfetch": "^4.1.0",
"url-polyfill": "^1.1.7",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"peerDependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3"
}
}