-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "graphql-cli-graphback-plugin",
"version": "0.2.1",
"description": "Auto generate resolvers on top of the graphql and database of your choice",
"homepage": "https://github.com/ankitjena/graphql-cli-graphback-plugin",
"main": "dist/index.js",
"types": "types/index.d.ts",
"typescript": {
"definition": "types/index.d.ts"
},
"author": "[email protected]",
"scripts": {
"clean": "rimraf coverage dist types",
"build": "tsc && cp -Rf ./src/templates/resources ./dist/templates/resources",
"cmd": "node ./dist/index.js",
"watch": "tsc -w",
"lint": "tslint -t stylish --project \"tsconfig.json\""
},
"engines": {
"node": "12.10.0"
},
"devDependencies": {
"@types/chalk": "0.4.31",
"@types/inquirer": "6.5.0",
"@types/node": "12.7.4",
"@types/node-emoji": "1.8.1",
"@types/through": "0.0.29",
"@types/yargs": "13.0.2",
"ava": "2.3.0",
"lint-staged": "9.2.5",
"rimraf": "3.0.0",
"ts-node": "8.3.0",
"tslint": "5.19.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"tsutils": "3.17.1",
"typescript": "3.6.2",
"typescript-eslint-parser": "21.0.2"
},
"dependencies": {
"chalk": "2.4.2",
"chokidar": "3.0.2",
"execa": "2.0.4",
"figlet": "1.2.4",
"glob": "7.1.4",
"graphback": "^0.8.0",
"inquirer": "7.0.0",
"node-emoji": "1.10.0",
"ora": "3.4.0",
"parse-github-url": "1.0.2",
"pg": "7.12.1",
"request": "2.88.0",
"sqlite3": "4.1.0",
"tar": "4.4.10",
"tmp": "0.1.0",
"yargs": "14.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}