generated from wayfair-incubator/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 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
{
"name": "@wayfair/node-froid",
"version": "3.2.2",
"description": "Federated GQL Relay Object Identification implementation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && ./node_modules/typescript/bin/tsc",
"build:post": "node ./scripts/cleanPackageJson.js",
"docs": "doctoc README.md CONTRIBUTING.md",
"lint": "eslint '*/**/*.{js,ts}'",
"lint:errors": "yarn lint --quiet",
"lint:fix": "yarn lint --fix",
"prettier": "prettier . -l",
"prettier:fix": "yarn run prettier --write",
"test": "jest",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest --runInBand",
"test-watch": "jest --watch",
"test:changed": "jest --onlyChanged --passWithNoTests --forceExit",
"ts:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wayfair-incubator/node-froid.git"
},
"keywords": [
"gql",
"graphql",
"federation",
"federated",
"relay",
"api",
"global",
"object",
"identification",
"id"
],
"author": "@mjfaga",
"license": "MIT",
"bugs": {
"url": "https://github.com/wayfair-incubator/node-froid/issues"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/wayfair-incubator/node-froid#readme",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"common-tags": "^1.8.2",
"doctoc": "^2.2.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"jest": "^29.0.3",
"jest-plugin-must-assert": "^3.0.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"peerDependencies": {
"graphql": "^16",
"graphql-relay": "^0.10"
}
}