-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.47 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.47 KB
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
90
91
92
93
94
{
"name": "envelop-network-viewer",
"version": "1.7.2",
"description": "A GraphQL Envelop plugin for providing visibility into your GraphQL operation network activity.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/FormidableLabs/envelop-network-viewer",
"author": "Jeremy Giberson <jeremy.giberson@formidable.com>",
"homepage": "https://github.com/FormidableLabs/envelop-network-viewer",
"url": "https://github.com/FormidableLabs/envelop-network-viewer",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@envelop/testing": "^4.4.1",
"@graphql-tools/schema": "^8.5.1",
"@svitejs/changesets-changelog-github-compact": "^0.1.1",
"@tsconfig/node12": "^1.0.11",
"@types/cls-hooked": "^4.3.3",
"@types/jest": "^28.1.6",
"@types/knex": "^0.16.1",
"@types/stubby": "^4.1.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"install-peers-cli": "^2.2.0",
"jest": "^28.1.3",
"jest-expect-json": "^0.1.1",
"prettier": "^2.7.1",
"stubby": "^5.1.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@envelop/core": "^2.4.1",
"@prisma/client": "^4.2.1",
"graphql": "^16.5.0",
"knex": "^2.2.0",
"prisma": "^4.2.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.21.3",
"sqlite3": "^5.0.11",
"typeorm": "^0.3.7"
},
"peerDependenciesMeta": {
"soy-milk": {
"optional": true
},
"@prisma/client": {
"optional": true
},
"knex": {
"optional": true
},
"prisma": {
"optional": true
},
"reflect-metadata": {
"optional": true
},
"sequelize": {
"optional": true
},
"sqlite3": {
"optional": true
},
"typeorm": {
"optional": true
}
},
"publishConfig": {
"provenance": true
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint --ext .ts ./src --fix",
"prebuild": "yarn clean",
"prepare": "install-peers",
"prisma": "prisma",
"test": "jest"
},
"dependencies": {
"@changesets/cli": "^2.26.1",
"@types/nanoid": "^3.0.0",
"cls-hooked": "^4.2.2",
"uuid": "^8.3.2"
}
}