eolas-api/package.json

26 lines
642 B
JSON
Raw Normal View History

2025-02-09 18:24:44 +00:00
{
"name": "eolas-api",
"version": "0.0.0",
2025-07-14 17:16:14 +01:00
"description": "API for interacting with Eolas, my Zettelkasten database",
2025-02-09 18:24:44 +00:00
"license": "ISC",
"author": "Thomas Bishop",
"type": "module",
2025-07-14 17:16:14 +01:00
"imports": {},
2025-02-09 18:24:44 +00:00
"main": "index.js",
"scripts": {
2025-07-14 17:16:14 +01:00
"start": "NODE_OPTIONS='--experimental-sqlite' nodemon src/index.js",
2025-02-09 18:24:44 +00:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
2025-07-22 15:55:27 +01:00
"cors": "^2.8.5",
2025-02-09 18:24:44 +00:00
"express": "^4.21.2"
},
"devDependencies": {
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
2025-07-14 17:16:14 +01:00
"nodemon": "^3.1.10",
2025-02-09 18:24:44 +00:00
"prettier": "^3.5.0"
}
}