fotobox/package.json
2023-05-28 17:22:27 +02:00

32 lines
785 B
JSON

{
"name": "photobox",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Tobias Hopp <tobi@gaminggeneration.de>",
"dependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.2.1",
"@types/node-webcam": "^0.8.0",
"@types/socket.io": "^3.0.2",
"express": "^4.18.2",
"node-webcam": "^0.8.1",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1"
},
"scripts": {
"build": "tsc; webpack",
"watch": "tsc -w",
"start": "npm run build && electron ./dist/main.js",
"startNC": "electron ./dist/main.js"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"electron": "^24.4.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
}
}