-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "liverate-4d",
"version": "1.0.0",
"description": "This is a simple rating app for streamers, enabled with OpenAI vision (gpt-4-vision-preview) to identify items you want to rate. It provides a dashboard to enter your ratings, and a browser source to display those ratings on screen. All ratings are out of 4 stars, and go to 4 decimal places.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"body-parser": "^1.20.2",
"connect-flash": "^0.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.17.3",
"openai": "^4.20.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"socket.io": "^4.7.2",
"tmi.js": "^1.8.5"
},
"engines": {
"node": "16"
},
"nodemonConfig": {
"ignore": ["views/*", "node_modules/*"]
},
"repository": {
"type": "git",
"url": "https://github.com/kevin-huff/liverate-4d.git"
},
"keywords": ["OpenAI API", "Twitch API", "Express", "Socket.io", "Passport" ],
"author": "Kevin Huff",
"license": "Unlicense"
}