forked from prismake/typegql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "typegql",
"version": "0.6.0",
"main": "lib/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"build:rollup": "rollup src/index.ts -c",
"build:types": "ttsc --project ttsconfig.json",
"build": "rimraf types lib && yarn run build:rollup && yarn run build:types",
"prepublishOnly": "rimraf types lib && yarn build",
"docs": "gitbook serve",
"docs:build": "gitbook build ./docs",
"precommit": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "https://github.com/prismake/typegql"
},
"devDependencies": {
"@types/graphql": "^0.13.0",
"@types/jest": "^22.2.3",
"@types/node": "^10.1.2",
"@types/object-path": "^0.9.29",
"@zerollup/ts-transform-paths": "^1.1.2",
"gh-pages": "^1.1.0",
"gitbook": "^3.2.3",
"gitbook-cli": "^2.3.2",
"husky": "^0.14.3",
"jest": "^23.0.0",
"prettier": "^1.12.1",
"pretty-quick": "^1.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.59.3",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-typescript2": "^0.11.1",
"ttypescript": "^1.2.0",
"typescript": "^2.8.1"
},
"dependencies": {
"graphql": "^0.13.2",
"object-path": "^0.11.4",
"reflect-metadata": "^0.1.12"
}
}