mirror of
https://github.com/mariadb-corporation/dev-example-todo.git
synced 2026-01-11 10:03:10 +00:00
20 lines
423 B
JSON
20 lines
423 B
JSON
{
|
|
"name": "todo",
|
|
"version": "1.0.0",
|
|
"description": "A simple todo app api",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "node server.js"
|
|
},
|
|
"author": "MariaDB Corporation",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"body-parser": "^1.19.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"mariadb": "^2.3.1"
|
|
}
|
|
}
|