-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 2.64 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
{
"name": "graphql-tools-sequelize",
"version": "2.3.0",
"description": "Integration of GraphQL-Tools and Sequelize ORM",
"keywords": [ "graphql", "graphql-tools", "sequelize", "schema", "resolver" ],
"main": "lib/gts.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rse/graphql-tools-sequelize.git"
},
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "rse@engelschall.com",
"url": "http://engelschall.com"
},
"homepage": "https://github.com/rse/graphql-tools-sequelize",
"bugs": "https://github.com/rse/graphql-tools-sequelize/issues",
"peerDependencies": {
"graphql": ">=0.13.0",
"graphql-tools": ">=3.0.0",
"graphql-tools-types": ">=1.1.0",
"sequelize": ">=4.0.0"
},
"dependencies": {
"bluebird": "3.7.2",
"ducky": "2.7.3",
"elasticlunr": "0.9.5",
"pure-uuid": "1.6.2",
"aggregation": "1.2.7",
"@babel/runtime-corejs2": "7.20.7"
},
"devDependencies": {
"grunt": "1.5.3",
"grunt-cli": "1.4.3",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-babel": "8.0.0",
"grunt-eslint": "24.0.1",
"babel-eslint": "10.1.0",
"eslint": "8.32.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/plugin-transform-runtime": "7.19.6"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"prepublishOnly": "grunt default",
"build": "grunt default",
"test": "cd sample && npm start"
}
}