-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 2.08 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
{
"name": "graphql-apq",
"version": "1.0.0",
"description": "Automatic persisted queries (APQ) for any GraphQL server.",
"keywords": [
"graphql",
"persisted queries",
"apq",
"server",
"queries"
],
"homepage": "https://github.com/lucasconstantino/graphql-apq#readme",
"bugs": {
"url": "https://github.com/lucasconstantino/graphql-apq/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasconstantino/graphql-apq.git"
},
"license": "MIT",
"author": "Lucas Constantino Silva <[email protected]>",
"main": "lib/index.js",
"scripts": {
"codecov": "yarn test && codecov",
"compile": "babel src --extensions .ts -d lib",
"lint": "eslint src --ext .ts",
"prepublish": "yarn qa && yarn compile",
"qa": "yarn lint && yarn type-check && npm test",
"test": "jest",
"test:watch": "yarn test --watch --collectCoverage=no",
"type-check": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,ts,css,md}": "prettier --write",
"*.{js,ts}": "eslint --cache --fix"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"dependencies": {
"memory-cache": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@types/memory-cache": "^0.2.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/parser": "^2.30.0",
"apollo-server-express": "^2.12.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-taller": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-tools": "^5.0.0",
"husky": ">=4",
"jest": "^25.5.0",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"ramda": "^0.27.0",
"supertest": "^4.0.2",
"typescript": "^3.8.3"
}
}