-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.54 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
{
"name": "gql-validate",
"version": "1.2.0",
"description": "Validate a JS object against a GraphQL schema",
"main": "index.js",
"module": "./src/index.js",
"scripts": {
"lint": "eslint --fix . && echo 'Lint complete.'",
"ci-lint": "eslint .",
"watch-test": "node -r esm src/index-test.js",
"test": "node -r esm src/index-test.js && npm run -s ci-lint",
"watch": "watch 'clear && npm run -s watch-test | tap-nirvana && npm run -s lint' src",
"debug": "node -r esm --inspect-brk src/index-test.js",
"build-docs": "scripts/build-docs.sh",
"typecheck": "tsc --rootDir . src/index-test.js --allowJs --checkJs --noEmit --esModuleInterop --lib es6 --jsx react && echo 'TypeScript check complete.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericelliott/gql-validate.git"
},
"keywords": [],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/gql-validate/issues"
},
"homepage": "https://github.com/ericelliott/gql-validate#readme",
"devDependencies": {
"@types/node": "12.20.13",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-jsdoc": "15.12.2",
"eslint-plugin-prettier": "3.4.0",
"jsdoc-to-markdown": "5.0.3",
"prettier": "1.19.1",
"riteway": "6.2.1",
"tap-nirvana": "1.1.0",
"typescript": "3.9.9",
"watch": "1.0.2",
"web3-utils": "1.3.6"
},
"dependencies": {
"esm": "3.2.25",
"graphql-to-json-schema": "1.0.0",
"immer": "8.0.4",
"yup": "0.29.3"
}
}