forked from ApryseSDK/webviewer-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.57 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "webviewer-ui",
"author": "PDFTron Systems Inc.",
"version": "7.0.1",
"description": "WebViewer UI built in React",
"main": "src/index.js",
"scripts": {
"start": "npx babel-node ./dev-server.js",
"test": "npx babel-node ./test-server.js",
"download-webviewer": "npx @pdftron/webviewer-downloader --core-only --path ./lib",
"cypress:open": "cypress open --project ./test/cypress",
"cy:run": "cypress run --project \"./test/cypress\" --browser chrome",
"lint": "eslint ./src/**/*.js",
"lint:fix": "eslint --fix ./src/**/*.js",
"clean": "rimraf build",
"bundle": "webpack --progress --config ./webpack.config.prod.js",
"build": "npm run clean && npm run bundle",
"translation": "node ./scripts/translate-i18n-files.js"
},
"dependencies": {
"@pdftron/webviewer-react-toolkit": "^0.6.0-beta.8",
"autolinker": "^3.11.1",
"classnames": "^2.2.6",
"css-vars-ponyfill": "^2.3.2",
"dayjs": "^1.8.19",
"file-saver": "git+https://github.com/ZhijieZhang/FileSaver.js.git",
"framer-motion": "^1.11.1",
"hotkeys-js": "^3.7.3",
"html2canvas": "git+https://github.com/mparizeau/html2canvas.git",
"i18next": "^19.0.3",
"i18next-http-backend": "^1.0.16",
"node-sass": "^4.13.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-draggable": "^4.3.1",
"react-hot-loader": "^4.12.19",
"react-i18next": "^11.3.1",
"react-measure": "^2.3.0",
"react-mentions": "git+https://github.com/PDFTron/react-mentions.git",
"react-onclickoutside": "^6.9.0",
"react-redux": "^7.1.3",
"react-swipeable": "^5.5.1",
"react-virtualized": "^9.21.2",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@google-cloud/translate": "^5.1.4",
"@hot-loader/react-dom": "^16.11.0",
"@pdftron/webviewer-downloader": "^1.4.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"cypress": "^3.8.2",
"cypress-image-snapshot": "^3.1.1",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"express": "^4.17.1",
"file-loader": "^5.0.2",
"ip": "^1.1.5",
"mini-css-extract-plugin": "0.8.0",
"opn": "^6.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.0",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
}
}