-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 987 Bytes
/
package.json
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
34
35
36
37
{
"name": "time-to-work",
"version": "1.0.0",
"description": "Measure how much do it takes to go to work",
"main": "index.js",
"author": "Iván Wolf",
"license": "MIT",
"private": false,
"scripts": {
"start": "node index.js",
"test": "mocha --recursive --exit",
"test:users": "mocha --recursive --exit --grep users",
"test:records": "mocha --recursive --exit --grep records",
"test:middlewares": "mocha --recursive --exit --grep middlewares",
"dev": "nodemon index.js"
},
"dependencies": {
"dotenv": "^4.0.0",
"knex": "^0.13.0",
"koa": "^2.3.0",
"koa-body": "^2.5.0",
"koa-logger": "^3.1.0",
"koa-router": "^7.2.1",
"lodash": "^4.17.4",
"objection": "^0.8.9",
"pg": "^7.3.0",
"sequelize": "^4.19.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.10.0",
"eslint-config-node-style-guide": "^3.0.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.1"
}
}