nexus/examples/ghost/package.json

33 lines
973 B
JSON
Raw Permalink Normal View History

2019-02-04 09:44:48 +08:00
{
"name": "@graphql-nexus/ghost-example-api",
"scripts": {
"dump-tables": "node -r ts-node/register/transpile-only scripts/dumpTables.ts",
"start": "yarn dump-tables && ts-node-dev --ignore-watch src/generated --no-notify --transpileOnly --respawn ./src"
2019-02-04 09:44:48 +08:00
},
"dependencies": {
"apollo-server-express": "^2.18.1",
2019-02-04 10:05:45 +08:00
"dataloader": "tgriesser/dataloader.git#ts-types",
"express": "^4.16.4",
"ghost": "^3.35.3",
"graphql": "^15.3.0",
"graphql-scalars": "^1.2.6",
"graphql-tools": "^4.0.7",
"knex": "^0.19.5",
2019-02-04 09:44:48 +08:00
"lodash": "^4.17.11",
2020-12-15 03:10:29 +08:00
"mysql": "^2.16.0",
"nexus": "^1.0.0"
2019-02-04 09:44:48 +08:00
},
"devDependencies": {
"@tgriesser/schemats": "^6.1.0",
2019-02-04 10:05:45 +08:00
"@types/express": "^4.16.1",
"@types/fs-extra": "^5.0.4",
"@types/graphql-iso-date": "^3.3.3",
2019-02-04 09:44:48 +08:00
"@types/lodash": "^4.14.120",
2019-02-04 10:05:45 +08:00
"fs-extra": "^7.0.1",
2019-11-12 03:57:21 +08:00
"prettier": "^1.19.1",
2019-02-04 10:05:45 +08:00
"ts-node": "^8.0.2",
"ts-node-dev": "^1.0.0-pre.30",
"typescript": "^3.9"
2019-02-04 09:44:48 +08:00
}
}