-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "lookylooky",
"version": "1.0.0",
"description": "This package creates a service to share pdfs which are converted to images and then shared via a link so it is like a share slideshow",
"main": "server.js",
"scripts": {
"start": "node server.mjs",
"build": "webpack --mode production",
"server": "nodemon server.mjs",
"watch": "webpack --mode development --watch"
},
"keywords": [
"share",
"pdf",
"screenshare",
"encrypted",
"share",
"screen"
],
"author": "H2 invent GmbH",
"license": "BSL-1.0",
"dependencies": {
"bootstrap": "^5.3.3",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"pdfjs-dist": "^4.10.38",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"style-loader": "^4.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.8",
"nodemon": "^3.1.9",
"sass": "^1.84.0",
"sass-loader": "^16.0.4",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}