-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ts-graphql-gen",
"version": "0.0.10",
"bin": "build/cli.js",
"repository": "https://github.com/rynobax/ts-graphql-gen.git",
"author": "Ryan Baxley <ryan.baxley1@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "jest",
"local": "node .\\build\\cli.js -c localtesting/ts-graphql-gen.config.js",
"release": "yarn build && np",
"typecheck": "tsc -w"
},
"files": [
"build"
],
"dependencies": {
"@graphql-toolkit/code-file-loader": "^0.10.4",
"@graphql-toolkit/core": "^0.10.4",
"@graphql-toolkit/graphql-tag-pluck": "^0.10.4",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.14.0",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-help": "^2.2.3",
"chokidar": "^3.4.0",
"glob": "^7.1.6",
"graphql": "^15.0.0",
"lodash": "^4.17.15",
"prettier": "^2.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"graphql-tag": "^2.10.3",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lint-staged": "^10.1.1",
"np": "^6.2.3",
"rollup": "^2.9.0",
"rollup-plugin-node-builtins": "^2.1.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
},
"np": {
"yarn": true
}
}