forked from graphql-nexus/nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.12 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
75
76
77
78
79
80
81
{
"name": "nexus",
"version": "0.12.0-beta.4",
"main": "dist",
"types": "dist",
"license": "MIT",
"description": "Scalable, strongly typed GraphQL schema development",
"homepage": "https://nexus.js.org",
"scripts": {
"dev": "yarn link-examples && tsc -w",
"test": "jest",
"test:ci": "jest -i",
"build": "tsc && prettier --write 'dist/**/*.ts'",
"lint": "tslint -p tsconfig.json",
"clean": "rm -rf dist",
"format": "prettier --write 'src/**/*.ts'",
"prepublish": "yarn clean && yarn lint && yarn build",
"postpublish": "yarn upgrade-deps || echo 'Oops...'",
"website": "cd website && yarn && yarn start",
"examples": "yarn link-examples && cd website && yarn gulp run-examples",
"deploy-site": "cd website && yarn && yarn gulp link-website && yarn build",
"link-examples": "cd website && yarn && yarn gulp link-examples",
"unlink-examples": "cd website && yarn && yarn gulp unlink-examples",
"upgrade-deps": "cd website && yarn && yarn gulp upgrade-deps",
"ts-ast-reader": "cd examples/ts-ast-reader && yarn start"
},
"files": [
"src",
"dist",
"LICENSE.md",
"README.md",
"yarn.lock"
],
"author": {
"name": "Tim Griesser",
"url": "https://github.com/tgriesser"
},
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/graphql": "14.0.7",
"@types/jest": "^23.3.7",
"@types/node": "^10.12.2",
"@types/prettier": "^1.15.2",
"graphql": "^14.0.2",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.16.0",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"graphql",
"schema",
"types",
"typescript"
],
"repository": {
"type": "git",
"url": "git://github.com/prisma/nexus.git"
}
}