-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
75 lines (75 loc) · 1.65 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
{
"name": "datasource-sql",
"version": "2.1.0",
"description": "SQL DataSource for Apollo GraphQL projects",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "prettier '**/*.js' && eslint '**/*.js'",
"lint:fix": "prettier --write '**/*.{js,ts}' && eslint --fix '**/*.js'",
"test": "jest",
"test:types": "tsd"
},
"engines": {
"node": ">=10.6.0",
"npm": ">=6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"setupFiles": [
"dotenv/config"
],
"testEnvironment": "node"
},
"lint-staged": {
"*.{js,ts,json,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cvburgess/SQLDataSource.git"
},
"author": "Charles Burgess",
"license": "MIT",
"bugs": {
"url": "https://github.com/cvburgess/SQLDataSource/issues"
},
"homepage": "https://github.com/cvburgess/SQLDataSource#readme",
"dependencies": {
"apollo-datasource": "^3.3.1",
"apollo-server-caching": "^3.3.0",
"knex-tiny-logger": "^2.1.0"
},
"devDependencies": {
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^3.0.5",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"pg": "^8.7.3",
"prettier": "^2.5.1",
"tsd": "^0.19.1",
"typescript": "^4.6.2"
},
"peerDependencies": {
"graphql": ">=14.0.2",
"knex": ">=0.95.0"
},
"keywords": [
"apollo",
"apollo-server",
"datasource",
"graphql",
"knex",
"sql"
]
}