Compare changes
Some changes are not shown.
For a faster browsing experience, only 10 of 11 files are shown. Download one of the files below to see all changes.
.gitignore
0 → 100644
+1
−0
index.js
0 → 100644
+0
−0
Original line number | Diff line number | Diff line |
---|
migrations.sql/migration.sql
0 → 100644
+28
−0
package-lock.json
0 → 100644
+4997
−0
File added.
Preview size limit exceeded, changes collapsed.
package.json
0 → 100644
+22
−0
Original line number | Diff line number | Diff line |
---|---|---|
{
|
||
"name": "monkapi",
|
||
"version": "1.0.0",
|
||
"description": "The monkiest API of all time",
|
||
"main": "index.js",
|
||
"type": "module",
|
||
"scripts": {
|
||
"start": "nodemon index",
|
||
"test": "echo \"Error: no test specified\" && exit 1"
|
||
},
|
||
"author": "V. Henriques",
|
||
"license": "ISC",
|
||
"dependencies": {
|
||
"express": "^4.18.2",
|
||
"sqlite": "^5.1.1",
|
||
"sqlite3": "^5.1.6"
|
||
},
|
||
"devDependencies": {
|
||
"nodemon": "^2.0.22",
|
||
"standard": "^17.0.0"
|
||
}
|
||
} |
src/DAO/MonkeyDbDAO.js
0 → 100644
+25
−0
src/DAO/SpeciesDbDAO.js
0 → 100644
+24
−0
src/factory/DAODbFactory.js
0 → 100644
+24
−0
src/factory/DAOFactory.js
0 → 100644
+13
−0
src/models/monkey.js
0 → 100644
+39
−0
src/models/species.js
0 → 100644
+43
−0