init
This commit is contained in:
32
package.json
Normal file
32
package.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user