-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "react-iiif-viewer",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"start": "parcel watch src/index.js",
"build": "parcel build src/index.js --global react-iiif-viewer",
"start-demo": "parcel example/src/index.html --out-dir example_dist --open",
"build-demo": "parcel build example/src/index.html --out-dir example_dist --public-url ./",
"publish-demo": "gh-pages -d example_dist",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"@emotion/core": "10.x",
"@emotion/styled": "10.x",
"react": "^16.x",
"react-dom": "^16.x"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@svgr/parcel-plugin-svgr": "^5.3.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@types/prop-types": "^15.7.3",
"babel-loader": "^8.1.0",
"canvas": "^2.6.1",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"gh-pages": "^2.2.0",
"jest": "^25.1.0",
"parcel-bundler": "^1.12.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {
"axios": "^0.19.2",
"openseadragon": "^2.4.2",
"uuid": "^7.0.2"
}
}