forked from ApryseSDK/webviewer-html-proxy-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.44 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.44 KB
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
{
"name": "@pdftron/webviewer-html-proxy-server",
"version": "1.9.8",
"description": "This is a proxy server to use with @pdftron/webviewer-html",
"main": "dist/main.js",
"author": "PDFTron Systems Inc.",
"license": "ISC",
"types": "types/index.d.ts",
"scripts": {
"build": "webpack --mode=production --config webpack.config.js",
"build-doc": "rm -rf doc && ./node_modules/.bin/jsdoc -c jsdocconfig.json -t ./node_modules/ink-docstrap/template -R README.md",
"watch-debug": "webpack --watch --mode=development --config webpack.config.js",
"lint": "eslint ./src --fix --ext .js,.jsx,.ts,.tsx",
"lint:ci": "eslint ./src --quiet --ext .js,.jsx,.ts,.tsx",
"release-patch": "npm version patch && npm publish --access public",
"release-minor": "npm version minor && npm publish --access public",
"release-major": "npm version major && npm publish --access public",
"prepublishOnly": "npm run build && npm run build-doc",
"postpublish": "git push"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.17.3",
"jsdom": "^19.0.0",
"node-fetch": "^2.6.7",
"puppeteer": "^14.0.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-typescript": "^0.14.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsdom": "^16.2.14",
"@types/node-fetch": "^2.6.1",
"babel-loader": "^8.2.3",
"better-docs": "^2.7.2",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.10",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDFTron/webviewer-html-proxy-server.git"
},
"bugs": {
"url": "https://github.com/PDFTron/webviewer-html-proxy-server/issues"
},
"homepage": "https://github.com/PDFTron/webviewer-html-proxy-server#readme"
}