-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "typegql",
"version": "0.7.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"b": "ncc build src/index.ts -o dist",
"build:rollup": "rollup src/index.ts -c",
"build": "rimraf lib && yarn run build:rollup",
"prepublishOnly": "rimraf 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": "^14.0.7",
"@types/jest": "^24.0.11",
"@types/node": "^11.12.0",
"@types/object-path": "^0.11.0",
"@zeit/ncc": "^0.17.0",
"@zerollup/ts-transform-paths": "^1.7.0",
"gh-pages": "^2.0.1",
"gitbook": "^3.2.3",
"gitbook-cli": "^2.3.2",
"husky": "^1.3.1",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"rimraf": "^2.6.3",
"rollup": "^1.7.3",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.20.1",
"ts-jest": "^24.0.0",
"ttypescript": "^1.5.6",
"typescript": "^3.3.4000"
},
"dependencies": {
"graphql": "^14.2.0",
"object-path": "^0.11.4",
"reflect-metadata": "^0.1.13"
}
}