-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "parsec-camera-server",
"version": "0.1.0",
"description": "Server that monitors attached cameras and communicates their info via an HTTPS server, allowing limited control and downloading of captured images.",
"main": "server/server.js",
"type": "module",
"scripts": {
"monit": "pm2 start ecosystem.config.cjs --env production",
"monit:dev": "pm2 start ecosystem.config.cjs --env development",
"dashboard": "pm2 monit",
"unmonit": "pm2 delete ecosystem.config.cjs",
"server": "NODE_ENV=production&& node server/server.js",
"server:dev": "set NODE_ENV=development&& nodemon --watch server server/server.js dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Camera",
"Canon",
"Control",
"HTTP"
],
"author": "Seth Berrier",
"license": "GPL-3.0-or-later",
"dependencies": {
"@dimensional/napi-canon-cameras": "file:node_packages/@dimensional/napi-canon-cameras.tgz",
"dotenv": "^16.0.1",
"esper-photo-control": "^0.1.0",
"exiftool-vendored": "^17.0.1",
"express": "^4.18.1",
"express-winston": "^4.2.0",
"ps-node": "^0.1.6",
"socket.io": "^4.5.1",
"tempy": "^3.0.0",
"winston": "^3.8.0",
"winston-daily-rotate-file": "^4.7.1",
"winston-logzio": "^5.1.4"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.18"
}
}