eolas-api/package.json

25 lines
602 B
JSON
Raw Normal View History

2025-02-09 18:24:44 +00:00
{
2025-08-04 16:32:59 +01:00
"name": "eolas-api",
2025-10-08 19:12:53 +01:00
"version": "0.2.0",
2025-10-08 18:53:44 +01:00
"description": "API for querying eolas-db, my Zettelkasten database",
2025-08-04 16:32:59 +01:00
"license": "ISC",
"author": "Thomas Bishop",
"type": "module",
"imports": {},
"main": "index.js",
"scripts": {
2025-08-09 14:40:59 +01:00
"start": "NODE_OPTIONS='--experimental-sqlite' node --watch --env-file=.env src/index.js",
2025-08-04 16:32:59 +01:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.2"
},
"devDependencies": {
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.0"
}
2025-02-09 18:24:44 +00:00
}