forked from koodi101/lesson3-nodejs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 731 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 731 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
{
"name": "chat-backend",
"version": "0.0.1",
"description": "Koodi101 chat",
"author": "Marko Klemetti <marko.klemetti@gmail.com>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=7"
},
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"lint": "eslint --ext .js src"
},
"dependencies": {
"kcors": "^2.2.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-router": "^8.0.8",
"sequelize": "^5.21.8",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.3"
}
}