-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.29 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "gnl-graphql",
"version": "0.0.1",
"description": "graphql server for detroit ledger",
"engines": {
"node": "10.x"
},
"scripts": {
"start": "tsc && node dist/scripts/createCsvs.js && node dist/index.js",
"pretest": "./testrunners/build-lint.sh && ./testrunners/db-setup.sh && ./testrunners/db-seed.sh",
"test": "jest integration-tests --forceExit",
"precommit-test-only": "./testrunners/build-lint.sh",
"lint": "eslint .",
"prettier": "prettier --write \"src/**/*.*\""
},
"author": "Benjamin Chodoroff <[email protected]>",
"license": "MIT",
"dependencies": {
"bunyan": "^1.8.12",
"config": "^2.0.1",
"dataloader": "1.4.0",
"dataloader-sequelize": "1.7.7",
"decamelize": "2.0.0",
"google-auth-library": "1.6.1",
"graphql": "14.0.2",
"graphql-bigint": "1.0.0",
"graphql-relay": "0.5.5",
"graphql-sequelize": "9.2.0",
"graphql-yoga": "1.16.8",
"lodash": "^4.17.13",
"pg": "7.*",
"pg-copy-streams": "1.2.0",
"sequelize": "4.38.0",
"toml": "^2.3.3"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/config": "^0.0.34",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/node": "^10.10.1",
"@types/sequelize": "^4.27.26",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"casual": "^1.5.3",
"csv-parse": "3.1.3",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-react": "^6.2.0",
"graphql-request": "^1.8.2",
"husky": "^1.1.2",
"jest": "^23.6.0",
"prettier": "1.14.3",
"sequelize-cli": "^4.1.1",
"typescript": "3.0.3"
},
"peerDependencies": {},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb/base",
"plugin:import/errors"
],
"rules": {
"no-use-before-define": 0,
"arrow-body-style": 0,
"dot-notation": 0,
"indent": [
"error",
2
],
"no-console": 0
},
"env": {
"mocha": true
}
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit-test-only"
}
}
}