-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 KB
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
{
"name": "tsukiyo",
"version": "1.0.0",
"description": "Twitch Chat Bot",
"homepage": "https://github.com/ShiroKitsuneLP/Tsukiyo#readme",
"bugs": {
"url": "https://github.com/ShiroKitsuneLP/Tsukiyo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShiroKitsuneLP/Tsukiyo.git"
},
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "src/tsukiyo.js",
"scripts": {
"database:drop": "node src/scripts/manageDatabase.js --drop",
"database:reset": "node src/scripts/manageDatabase.js --reset",
"database:setup": "node src/scripts/manageDatabase.js --setup",
"dev": "concurrently \"nodemon --trace-warnings src/tsukiyo.js\" \"nodemon --trace-warnings src/web/index.js\"",
"start": "concurrently \"node src/tsukiyo.js\" \"node src/web/index.js\""
},
"dependencies": {
"axios": "^1.12.2",
"better-sqlite3": "^12.4.1",
"express": "^5.1.0",
"spotify-web-api-node": "^5.0.2",
"tmi.js": "^1.8.5"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}