-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 848 Bytes
/
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
{
"name": "overlay-engine",
"version": "1.0.0",
"description": "Moteur d'habillage pour stream",
"private": true,
"author": "Guillaume Seznec <guillaume@seznec.fr>",
"license": "GPL",
"scripts": {
"start": "./app/server.js",
"watch-fb-comments": "./app/watch-fb-comments.js",
"watch-fb-reactions": "./app/watch-fb-reactions.js",
"watch-tweets": "./app/watch-tweets.js",
"clean-avatars": "rm public/img/avatars/*.jpg",
"clean": "rm -Rf node_modules log"
},
"dependencies": {
"axios": "1.7.9",
"ejs": "3.1.10",
"eventsource": "2.0.2",
"express": "4.21.1",
"moment": "2.30.1",
"sha1": "1.1.1",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"sqlite3": "5.1.7",
"twitter": "1.7.1"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"eslint": "9.15.0"
}
}