UNPKG

simple-graphql

Version:

The simple way to generates GraphQL schemas and Sequelize models from your models definition.

80 lines (79 loc) 1.84 kB
{ "name": "simple-graphql", "version": "5.2.5", "description": "The simple way to generates GraphQL schemas and Sequelize models from your models definition.", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "format": "prettier --write src __tests__", "test": "jest", "demo": "ts-node demo/index.ts", "build": "rm -rf dist && tsc", "buildAndPublish": "npm run format && npm run build && npm publish" }, "author": "logerzhu", "repository": { "type": "git", "url": "git@github.com:logerzhu/simple-graphql.git" }, "bugs": { "url": "https://github.com/logerzhu/simple-graphql/issues" }, "homepage": "https://github.com/logerzhu/simple-graphql", "license": "MIT", "keywords": [ "GraphQL", "ORM", "Sequelize", "MySQL", "PostgreSQL", "SQLite", "MSSQL", "JSON Typedef" ], "dependencies": { "@types/lodash": "^4.14.168", "dataloader": "^2.0.0", "lodash": "^4.17.20", "lru_map": "^0.3.3", "sequelize": "^6.28.0" }, "devDependencies": { "@types/jest": "^26.0.20", "@types/ws": "^8.5.3", "cls-hooked": "^4.2.2", "express": "^4.17.1", "express-graphql": "^0.12.0", "graphql": "^15.5.3", "graphql-relay": "^0.9.0", "graphql-ws": "^5.11.2", "jest": "^26.6.3", "mysql2": "^1.7.0", "pre-commit": "^1.2.2", "prettier": "2.2.1", "sqlite3": "^4.2.0", "ts-jest": "^26.4.4", "ts-node": "^10.9.1", "typedoc": "^0.23.23", "typescript": "^4.9.4", "ws": "^8.11.0" }, "pre-commit": [ "format" ], "prettier": { "overrides": [ { "files": [ "*.ts", "*.tsx" ], "options": { "singleQuote": true, "semi": false, "trailingComma": "none" } } ] } }