33 lines
768 B
JSON
33 lines
768 B
JSON
{
|
|
"name": "nodejs-express-orm-crud",
|
|
"version": "1.0.0",
|
|
"description": "Przykład aplikacji CRUD w NodeJS, framework Express i ORM",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node app.js",
|
|
"dev": "nodemon app.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.klich.net.pl/skyer/Nodejs-express-orm-crud.git"
|
|
},
|
|
"keywords": [
|
|
"node"
|
|
],
|
|
"author": "Leszek Klich",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"body-parser": "^2.2.0",
|
|
"ejs": "^3.1.10",
|
|
"express": "^5.1.0",
|
|
"express-ejs-layouts": "^2.5.1",
|
|
"method-override": "^3.0.0",
|
|
"sequelize": "^6.37.7",
|
|
"sqlite3": "^5.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.10"
|
|
}
|
|
}
|