feat: init files

This commit is contained in:
2025-06-17 22:58:08 +08:00
parent 3c77faf93e
commit 6b090a93c9
10 changed files with 385 additions and 0 deletions

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "crud-demo-app",
"version": "1.0.0",
"main": "index.js",
"description": "CRUD demo app with CucumberJS tests",
"author": "",
"license": "ISC",
"scripts": {
"start": "node src/server.js",
"test": "cucumber-js --format json:cucumber-report.json",
"report": "node generate-report.js && node inject-css.js"
},
"keywords": [],
"dependencies": {
"axios": "^1.9.0",
"express": "^5.1.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@cucumber/cucumber": "^11.3.0",
"cucumber-html-report": "^0.6.5",
"cucumber-html-reporter": "^7.2.0",
"multiple-cucumber-html-reporter": "^3.9.2"
}
}