-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
98 lines (98 loc) · 2.52 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "sqlmancer",
"version": "0.3.3",
"description": "Conjure SQL from GraphQL queries",
"author": "Daniel Rearden",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/danielrearden/sqlmancer.git"
},
"bugs": {
"url": "https://github.com/danielrearden/sqlmancer/issues"
},
"homepage": "https://sqlmancer.netlify.com",
"keywords": [
"graphql",
"sdl",
"postgresql",
"postgres",
"pg",
"mysql",
"mariadb",
"sqlite",
"sql",
"sqlmancer"
],
"main": "dist/index.js",
"files": [
"/dist",
"!**/__tests__/**/*"
],
"types": "dist/index.d.ts",
"bin": {
"sqlmancer": "./dist/cli/sqlmancer.js"
},
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest --runInBand --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"check:format": "prettier --check \"src/**/*.ts\"",
"check:ts": "tsc --noemit",
"db:init": "node scripts/db-init",
"prepublishOnly": "npm run lint && npm run check:format && npm run test && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run check:format && npm run check:ts && npm run test"
}
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@graphql-toolkit/code-file-loader": "^0.10.5",
"@graphql-toolkit/core": "^0.10.5",
"@graphql-toolkit/graphql-file-loader": "^0.10.5",
"@graphql-toolkit/schema-merging": "^0.10.5",
"chokidar": "^3.3.1",
"commander": "^5.0.0",
"coveralls": "^3.1.0",
"graphql-parse-resolve-info": "^4.5.0",
"graphql-tools": "^5.0.1-065f82a.0",
"knex": "^0.21.1",
"lodash": "^4.17.15",
"mkdirp": "^1.0.4",
"ora": "^4.0.3",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/jest": "25.2.3",
"@types/lodash": "4.14.155",
"@types/mkdirp": "1.0.1",
"@typescript-eslint/eslint-plugin": "3.1.0",
"@typescript-eslint/parser": "3.1.0",
"eslint": "7.2.0",
"eslint-plugin-jest": "23.13.2",
"graphql": "15.1.0",
"graphql-middleware": "4.0.2",
"graphql-scalars": "1.1.5",
"graphql-tag": "2.10.3",
"husky": "4.2.5",
"jest": "26.0.1",
"jest-extended": "0.11.5",
"mysql2": "2.1.0",
"pg": "8.2.1",
"prettier": "2.0.5",
"sqlite3": "4.2.0",
"stream-mock": "2.0.5",
"ts-jest": "26.1.0",
"ts-node": "8.10.2",
"typescript": "3.9.5"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0"
}
}