This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 2.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
{
"name": "populus-viewer",
"version": "0.0.71",
"description": "A pdf viewer for Populus",
"scripts": {
"test": "eslint src",
"build": "webpack --progress --mode production",
"watch": "webpack --progress --watch",
"serve": "webpack serve --mode development",
"serve-production": "webpack serve --mode production",
"deploy": "ORIGIN=\"$(git remote get-url origin)\" && rm -rf dist/.git && npm run build && cd dist && git init && git add . && git commit -m \"deploy $(date -I)\" && git remote add origin \"$ORIGIN\" && git push --force origin main:gh-pages",
"preversion": "npm test",
"postversion": "npm run deploy && git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-react-jsx": "^7.12.17",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.6.0",
"eslint-config-preact": "^1.1.4",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.23.2",
"pdfjs-dist": "^2.13.216",
"style-loader": "^3.3.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.7.4",
"worker-loader": "^3.0.8"
},
"author": "Graham Leach-Krouse",
"license": "GPL-3.0-or-later",
"dependencies": {
"blurhash": "^1.1.5",
"buffer": "^6.0.3",
"commonmark": "^0.30.0",
"emoji-picker-element": "^1.8.2",
"history": "^5.0.1",
"katex": "^0.16.0",
"matrix-js-sdk": "^20.1.0",
"png-chunks-extract": "^1.0.0",
"preact": "^10.5.12",
"preact-router": "^4.0.1",
"sanitize-html": "^2.3.3",
"tippy.js": "^6.3.7",
"url": "^0.11.0",
"wavesurfer.js": "^6.1.0",
"workbox-cacheable-response": "^6.5.1",
"workbox-expiration": "^6.5.1",
"workbox-precaching": "^6.5.1",
"workbox-routing": "^6.5.1",
"workbox-strategies": "^6.5.1",
"workbox-webpack-plugin": "^6.3.0"
}
}