forked from bodleian/iiif-manifest-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.37 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
{
"name": "iiif-manifest-editor",
"version": "0.7.0",
"description": "An online editor to generate IIIF manifests",
"keywords": [
"iiif",
"manifest",
"editor"
],
"author": "The Bodleian Libraries of the University of Oxford",
"contributors": [
{
"name": "Rafael Schwemmer",
"email": "[email protected]",
"url": "http://www.textandbytes.com"
},
{
"name": "Douglas Kim",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bodleian/iiif-manifest-editor"
},
"bugs": {
"url": "https://github.com/bodleian/iiif-manifest-editor/issues"
},
"engines": {
"node": "8.1.x"
},
"main": "index.js",
"scripts": {
"test": "karma start",
"build": "webpack",
"build-prod": "NODE_ENV=production webpack",
"watch": "webpack -w",
"stats": "webpack --profile --json > stats.json",
"start": "node server.js"
},
"dependencies": {
"axios": "^0.11.0",
"classnames": "^2.2.5",
"deepcopy": "^0.6.3",
"express": "^4.16.2",
"font-awesome": "^4.6.3",
"json-loader": "^0.5.7",
"manifesto.js": "0.2.1",
"multer": "^1.1.0",
"openseadragon": "^2.3.1",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-highlighter": "^0.4.2",
"react-lazy-load": "^3.0.13",
"react-router": "^2.0.0",
"react-sortable-component": "^1.0.0",
"throttle-debounce": "^1.0.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"bootstrap-sass": "^3.3.6",
"css-loader": "^0.23.1",
"deep-freeze-strict": "^1.1.1",
"expect": "^1.14.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.9.0",
"jquery": "^3.3.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"mocha": "^3.5.3",
"node-sass": "^4.7.2",
"react-addons-test-utils": "15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"sass-loader": "^6.0.6",
"script-loader": "^0.6.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^3.11.0"
}
}