-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.21 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
{
"name": "webviewer-realtime-collaboration-sqlite3-sample",
"version": "1.0.0",
"description": "WebViewer sample to show how you can create a real time collaboration app with WebViewer using WebSocket, SQLite3, and Node.js server.",
"main": "client/index.js",
"scripts": {
"start-server": "ts-node server/server.ts",
"start-client": "parcel client/index.html --port=8000"
},
"author": "PDFTron Systems Inc.",
"dependencies": {
"@pdftron/collab-client": "2.0.0",
"@pdftron/collab-server": "2.0.0",
"@pdftron/collab-sql-resolver-generator": "2.0.0",
"@pdftron/webviewer": "^8.2.0",
"@types/faker": "^6.6.9",
"@types/sqlite3": "^3.1.8",
"dotenv": "^8.2.0",
"faker": "^5.4.0",
"parcel": "^1.12.4",
"sqlite3": "^5.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"nodemon": "^2.0.5",
"parcel-plugin-static-files-copy": "^2.5.0"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "node_modules/@pdftron/webviewer/public",
"staticOutDir": "public/webviewer"
}
],
"watcherGlob": "**"
}
}