-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "layerstack",
"version": "2.3.0",
"description": "A viewer for superimposed, aligned IIIF images.",
"keywords": [
"v&a",
"museum",
"iiif",
"image",
"layer",
"viewer"
],
"homepage": "https://github.com/vanda/layerstack",
"bugs": "https://github.com/vanda/layerstack/issues",
"license": "MIT",
"author": "Luca Carini <[email protected]> (https://vam.ac.uk)",
"repository": {
"type": "git",
"url": "https://github.com/vanda/layerstack.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js",
"start": "webpack serve --open --config webpack/webpack.config.dev.js",
"version": "npm run build && gh-pages -d build",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "7.x",
"@babel/plugin-syntax-dynamic-import": "7.x",
"@babel/preset-env": "^7.20.2",
"autoprefixer": "latest",
"babel-loader": "^8.3.0",
"clean-webpack-plugin": "3.x",
"copy-webpack-plugin": "9.x",
"core-js": "^3.29.0",
"cross-env": "6.x",
"css-loader": "^6.7.3",
"eslint": "6.x",
"eslint-loader": "4.x",
"file-loader": "6.x",
"gh-pages": "6.x",
"html-webpack-plugin": "5.x",
"mini-css-extract-plugin": "0.x",
"postcss-css-variables": "latest",
"postcss-loader": "latest",
"sass": "1.x",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"stylelint": "13.x",
"stylelint-webpack-plugin": "1.x",
"webpack": "^5.75.0",
"webpack-cli": "4.x",
"webpack-dev-server": "4.x",
"webpack-merge": "5.x"
},
"dependencies": {
"fullscreen-polyfill": "1.x",
"openseadragon": "3.x"
}
}