-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "fielddataloader",
"version": "0.0.7",
"description": "A wrapper around Facebook's DataLoader which supports batching field queries.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc --declarationMap -w",
"build": "tsc --declarationMap",
"test": "jest --watchAll",
"test:ci": "npm run lint && npm run format:ci && jest",
"lint": "eslint --ext .js src",
"format:ci": "prettier-check {src,config}/**/*.ts",
"format": "prettier --write {src,config}/**/*.ts",
"prepublish": "npm run build"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"author": "David Furnes <dfurnes@dosomething.org>",
"license": "MIT",
"dependencies": {
"dataloader": "^1.4.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@dosomething/eslint-config": "^5.0.1",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.138",
"@types/node": "^12.11.7",
"eslint": "^4.19.1",
"graphql": "^14.5.6",
"graphql-tools": "^4.0.5",
"jest": "^24.9.0",
"prettier": "1.18.2",
"prettier-check": "^2.0.0",
"tagged-template-noop": "^2.1.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}