-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 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
72
73
74
75
{
"name": "@debtcollective/disputes-api",
"version": "0.8.5",
"description": "Dispute Tools API",
"main": "index.js",
"license": "BSD-3-Clause",
"type": "module",
"private": true,
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"scripts": {
"db:migrate": "yarn knex migrate:latest",
"db:migrate:down": "yarn knex migrate:down",
"db:test:prepare": "NODE_ENV=test yarn db:migrate",
"debug": "nodemon --exec node -r esm src/index.js",
"knex": "node -r esm node_modules/.bin/knex",
"pre-commit": "lint-staged",
"setup:ci": "yarn db:test:prepare",
"start": "nodemon --exec node -r esm src/index.js",
"start:prod": "node -r esm src/index.js",
"test": "jest --watch",
"test:ci": "yarn test:coverage",
"test:coverage": "jest --coverage --verbose --color"
},
"dependencies": {
"@debtcollective/tools": "0.8.5",
"apollo-server": "2.9.4",
"dotenv": "8.2.0",
"esm": "3.2.25",
"graphql": "14.5.8",
"graphql-type-json": "0.3.0",
"knex": "0.19.5",
"lodash": "4.17.15",
"nconf": "0.10.0",
"objection": "1.6.11",
"pg": "7.12.1"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"@semantic-release/commit-analyzer": "6.3.0",
"@semantic-release/github": "5.5.0",
"@semantic-release/release-notes-generator": "7.3.0",
"babel-jest": "24.9.0",
"eslint": "6.6.0",
"eslint-plugin-flowtype": "4.3.0",
"eslint-plugin-graphql": "3.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"flow-bin": "0.112.0",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"nodemon": "1.19.2",
"prettier-eslint-cli": "5.0.0",
"semantic-release": "15.13.24"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"flow focus-check",
"git add"
],
"*.{json,md}": [
"prettier-eslint --write",
"git add"
]
}
}