upload-apollo-client/api/package.json
2021-12-06 23:18:50 +11:00

50 lines
1.3 KiB
JSON

{
"name": "apollo-upload-examples-api",
"private": true,
"license": "MIT",
"author": {
"name": "Jayden Seric",
"email": "me@jaydenseric.com",
"url": "https://jaydenseric.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jaydenseric/apollo-upload-examples.git",
"directory": "api"
},
"homepage": "https://github.com/jaydenseric/apollo-upload-examples#readme",
"bugs": "https://github.com/jaydenseric/apollo-upload-examples/issues",
"funding": "https://github.com/sponsors/jaydenseric",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >= 16.0.0",
"npm": ">= 7"
},
"dependencies": {
"apollo-server-koa": "^3.5.0",
"dotenv": "^10.0.0",
"graphql": "^16.0.1",
"graphql-upload": "^13.0.0",
"koa": "^2.13.4",
"make-dir": "^3.1.0",
"shortid": "^2.2.16"
},
"devDependencies": {
"eslint": "^8.4.0",
"eslint-config-env": "^23.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
},
"scripts": {
"dev": "nodemon",
"start": "node -r dotenv/config server.mjs",
"eslint": "eslint .",
"prettier": "prettier -c .",
"test": "npm run eslint && npm run prettier"
}
}