-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
71 lines (71 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"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 --watch src --ext js --exec 'nf start -j Procfile.dev || exit 1'",
"lint": "eslint .",
"snyk": "snyk auth $SNYK_TOKEN && snyk test",
"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": "^9.2.0",
"chai": "^4.2.0",
"chance": "^1.0.18",
"eslint": "^5.14.1",
"foreman": "^3.0.1",
"mocha": "^6.0.1",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"pino-pretty": "^2.5.0",
"sinon": "^7.2.4",
"snyk": "^1.134.2",
"supertest-koa-agent": "^0.3.2"
},
"dependencies": {
"apollo-server-koa": "^2.4.6",
"aws-sdk": "^2.409.0",
"bcrypt": "^3.0.4",
"bluebird": "^3.5.3",
"bull": "^3.7.0",
"dataloader": "^1.4.0",
"dotenv": "^6.2.0",
"graphql": "^14.1.1",
"jsonschema": "^1.2.4",
"jsonwebtoken": "^8.5.0",
"kcors": "^2.2.2",
"knex": "^0.16.3",
"koa": "^2.7.0",
"koa-body": "^4.0.8",
"koa-compress": "^3.0.0",
"koa-helmet": "^4.0.0",
"koa-router": "^7.4.0",
"merge-graphql-schemas": "^1.5.8",
"node-fetch": "^2.3.0",
"objection": "^1.6.2",
"pg": "^7.8.1",
"pino": "^5.11.1",
"ramda": "^0.26.1"
}
}