forked from ProjectMirador/mirador
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 4.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "mirador",
"version": "3.0.0-alpha.16",
"description": "",
"main": "dist/mirador.min.js",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf ./dist",
"lint": "node_modules/.bin/eslint ./ && node_modules/.bin/sass-lint -v ./src/styles/**/* && npm run lint:translations",
"lint:translations": "node ./scripts/i18n-lint.js",
"server": "node_modules/.bin/http-server",
"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 && babel dist/es -d dist/es",
"build:watch": "webpack --watch --mode=development",
"prepublishOnly": "npm run clean && npm run build:es && npm run build",
"size": "bundlewatch --config bundlewatch.config.json",
"start": "npm run build:dev && concurrently \"npm run build:watch\" \"npm run server -- -p 4444\"",
"server:json": "node ./scripts/json-server/server.js >> ./scripts/json-server/json-server.log"
},
"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.2.0",
"@material-ui/icons": "^4.2.1",
"@researchgate/react-intersection-observer": "^1.0.0",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"css-ns": "^1.2.2",
"deepmerge": "^3.3.0",
"dompurify": "^1.0.11",
"downshift": "^3.2.10",
"i18next": "^17.0.6",
"immutable": "^4.0.0-rc.12",
"intersection-observer": "^0.7.0",
"lodash": "^4.17.11",
"manifesto.js": "^3.0.11",
"node-fetch": "^2.6.0",
"node-sass": "^4.12.0",
"normalize-url": "^4.2.0",
"openseadragon": "^2.4.1",
"prop-types": "^15.6.2",
"react-aria-live": "^2.0.5",
"react-copy-to-clipboard": "^5.0.1",
"react-full-screen": "^0.2.4",
"react-i18next": "^10.11.4",
"react-iframe-comm": "^1.2.2",
"react-image": "^2.1.3",
"react-mosaic-component": "^3.2.0",
"react-placeholder": "^3.0.1",
"react-redux": "^7.1.0",
"react-resize-observer": "^1.1.1",
"react-rnd": "^9.2.0",
"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",
"sass-loader": "^7.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@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-transform-react-remove-prop-types": "^0.4.24",
"bundlewatch": "^0.2.5",
"chalk": "^2.4.2",
"codecov": "^3.5.0",
"concurrently": "^4.1.1",
"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",
"json-server": "^0.15.0",
"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",
"sass-lint": "^1.13.1",
"style-loader": "^0.23.1",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"peerDependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3"
}
}