-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "library-api",
"version": "1.0.0",
"main": "index.js",
"author": "Kelsey Jackson <kelseythej@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"start:debug": "nodemon --inspect index.js",
"db:create": "sequelize-esm db:create"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"bcrypt": "^3.0.6",
"dotenv": "^8.0.0",
"esm": "^3.2.25",
"inflected": "^2.0.4",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.15",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.10.1",
"sequelize-cli-esm": "^5.0.6"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}