45 lines
1.2 KiB
JSON
45 lines
1.2 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.7.0",
|
|
"dotenv": "^16.0.1",
|
|
"graphql": "^16.5.0",
|
|
"graphql-upload": "^13.0.0",
|
|
"koa": "^2.13.4",
|
|
"make-dir": "^3.1.0",
|
|
"shortid": "^2.2.16"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.16.0",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"nodemon": "^2.0.16",
|
|
"prettier": "^2.6.2"
|
|
},
|
|
"scripts": {
|
|
"dev": "nodemon",
|
|
"start": "node -r dotenv/config server.mjs",
|
|
"eslint": "eslint .",
|
|
"prettier": "prettier -c .",
|
|
"test": "npm run eslint && npm run prettier"
|
|
}
|
|
}
|