This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "apollo-link-tracer",
"version": "1.0.0",
"description": "Trace your apollo queries and mutations",
"license": "Apache-2.0",
"files": ["*.md", "src/**.js", "src/**.d.ts"],
"main": "./src/index.js",
"typings": "./src/index.d.ts",
"repository": "convoyinc/apollo-link-tracer",
"scripts": {
"clean": "./scripts/clean.sh",
"deps": "./scripts/deps.sh",
"dev": "./scripts/dev.sh",
"compile": "./scripts/compile.sh",
"release": "./scripts/release.sh",
"start": "./scripts/start.sh",
"test": "./scripts/test.sh",
"test:compile": "./scripts/test:compile.sh",
"test:style": "./scripts/test:style.sh",
"test:unit": "./scripts/test:unit.sh",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,md,ts}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"dependencies": {
"@convoy/tracer": "^1.0.144",
"apollo-link": "^1.1.0",
"tslib": "^1.6.0"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/chai-as-promised": "^0.0.30",
"@types/graphql": "^0.12.4",
"@types/lodash": "^4.14.104",
"@types/node": "^6.0.52",
"@types/sinon": "^2.3.4",
"@types/sinon-chai": "^2.7.29",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-jest-diff": "nevir/chai-jest-diff#built-member-assertions",
"graphql": "^0.13.1",
"graphql-tag": "^2.8.0",
"husky": "^0.14.3",
"jest": "^21.1.0",
"jest-junit": "^3.0.0",
"lint-staged": "^6.0.1",
"prettier": "^1.10.2",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"tslint": "^5.8.0",
"tslint-no-unused-expression-chai": "0.0.3",
"typescript": "^2.7.2"
}
}