-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "apollo-server-integration-testing",
"version": "4.0.0",
"description": "Test helper for writing apollo-server integration tests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/zapier/apollo-server-integration-testing.git",
"author": "Vitor Balocco <[email protected]>",
"keywords": [
"GraphQL",
"Apollo",
"Server",
"Javascript",
"Testing",
"Integration Testing"
],
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"clean": "rm -rf dist/",
"compile": "tsc",
"prepublish": "yarn clean && yarn compile",
"dev": "tsc --watch",
"prettier": "prettier --check src"
},
"dependencies": {
"apollo-server-core": "^3.6.7",
"apollo-server-express": "^3.6.7",
"express": "^4.17.1",
"node-mocks-http": "^1.8.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"graphql": "^16.3.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"typescript": "^4.2.4"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,ts}": "prettier --write"
}
}