getting-started-app/package.json

19 lines
360 B
JSON
Raw Normal View History

2023-07-17 13:17:25 -04:00
{
"name": "101-app",
"version": "1.0.0",
2023-09-17 11:58:10 -04:00
"main": "main.py",
2023-07-17 13:17:25 -04:00
"license": "MIT",
"scripts": {
"prettify": "prettier -l --write \"**/*.js\"",
"test": "jest",
"dev": "nodemon src/index.js"
},
"dependencies": {
"express": "^4.18.2",
"mysql2": "^2.3.3",
"sqlite3": "^5.1.2",
"uuid": "^9.0.0",
"wait-port": "^1.0.4"
}
}