-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
{
"name": "nexus-args-validator",
"version": "0.0.0-development",
"description": "Nexus plugin to validate and transform graphql arguments",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"build": "del-cli --force ./dist && tsup-node src/index.ts src/validators.ts src/transformers.ts --dts --minify",
"test": "jest",
"lint": "eslint src/**",
"commit": "git-cz",
"semantic-release": "semantic-release --branches main"
},
"repository": {
"type": "git",
"url": "https://github.com/ahmedosama7450/nexus-args-validator.git"
},
"keywords": [
"nexus",
"nexus-validation-plugin"
],
"author": "ahmedosama",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmedosama7450/nexus-args-validator/issues"
},
"homepage": "https://github.com/ahmedosama7450/nexus-args-validator#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^4.0.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.1",
"graphql": "^16.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"nexus": "^1.3.0",
"prettier": "^2.6.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"tsup": "^5.12.0",
"typescript": "^4.6.2"
},
"peerDependencies": {
"graphql": "^15 || ^16",
"nexus": "^1"
},
"dependencies": {
"jest-get-type": "^27.5.1"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,html,css,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}