forked from strvcom/nodejs-open-knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nodejs-nights-v2",
"version": "1.0.0",
"description": "Dogbook API",
"engines": {
"node": "~11.0.0",
"npm": "~6.4.1"
},
"scripts": {
"test": "NODE_ENV=test npx mocha --opts ./tests/mocha.opts ./tests",
"test:coverage": "NODE_ENV=test npx nyc mocha --opts ./tests/mocha.opts ./tests",
"start": "node src/app.js",
"dev": "nodemon src/app.js | pino-pretty",
"lint": "eslint .",
"migrate:make": "knex migrate:make --knexfile ./src/database/knexfile.js",
"db:migrate": "knex migrate:latest --knexfile ./src/database/knexfile.js",
"db:rollback": "knex migrate:rollback --knexfile ./src/database/knexfile.js",
"infra": "docker-compose up -d",
"infra:stop": "docker-compose down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strvcom/nodejs-nights-2018.git"
},
"author": "STRV Backend Crew",
"license": "MIT",
"bugs": {
"url": "https://github.com/strvcom/nodejs-nights-2018/issues"
},
"homepage": "https://github.com/strvcom/nodejs-nights-2018#readme",
"devDependencies": {
"@strv/eslint-config-javascript": "^8.3.1",
"chai": "^4.2.0",
"eslint": "^5.7.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"nyc": "^13.1.0",
"pino-pretty": "^2.2.2",
"sinon": "^7.1.1",
"supertest-koa-agent": "^0.3.0"
},
"dependencies": {
"bcrypt": "^3.0.2",
"dotenv": "^6.1.0",
"jsonschema": "^1.2.4",
"jsonwebtoken": "^8.3.0",
"kcors": "^2.2.2",
"knex": "^0.15.2",
"koa": "^2.6.1",
"koa-body": "^4.0.4",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"node-fetch": "^2.2.0",
"objection": "^1.3.0",
"pg": "^7.4.3",
"pino": "^5.8.0",
"ramda": "^0.25.0"
}
}