-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 844 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 844 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
{
"name": "everysong",
"version": "1.0.0",
"description": "A database-driven music discography explorer. Self-hostable. Add any artist via CSV.",
"main": "server.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "node --experimental-sqlite server.js",
"dev": "node --experimental-sqlite --watch server.js",
"seed:bts": "node --experimental-sqlite scripts/seed-bts.js",
"seed:psb": "node --experimental-sqlite scripts/seed-psb.js",
"seed:all": "npm run seed:bts && npm run seed:psb",
"lint": "node --check server.js db/database.js scripts/seed-bts.js scripts/seed-psb.js"
},
"keywords": ["music", "discography", "k-pop", "bts", "self-hosted", "sqlite", "express"],
"license": "MIT",
"dependencies": {
"compression": "^1.8.1",
"ejs": "^3.1.10",
"express": "^4.22.1"
}
}