-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 883 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 883 Bytes
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
{
"name": "senfbot",
"version": "1.0.0",
"description": "There are many different forms of Christian Senf that may appear in the natural world.",
"main": "index.js",
"scripts": {
"start": "dockerd & node index.js",
"docker-build": "sudo docker build -t cyounglund/senfbot:latest .",
"docker-run": "sudo docker run --rm --env-file .env --privileged cyounglund/senfbot:latest",
"docker-push": "sudo docker push cyounglund/senfbot:latest",
"docker-pull-faceswap": "sudo docker pull cyounglund/faceswap:latest",
"faceswap": "docker run --rm -v \"/app/faces:/faces\" -v \"/app/temp:/temp\" cyounglund/faceswap:latest"
},
"devDependencies": {
"prettier": "^2.6.2"
},
"dependencies": {
"dotenv": "^16.0.0",
"google-images": "^2.1.0",
"twit": "^2.2.11"
},
"prettier": {
"singleQuote": true,
"arrowParens": "always"
}
}