50 lines
1.4 KiB
JSON
50 lines
1.4 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.20 || >= 14.13",
|
|
"npm": ">= 7"
|
|
},
|
|
"dependencies": {
|
|
"apollo-server-koa": "^3.1.2",
|
|
"dotenv": "^10.0.0",
|
|
"graphql": "^15.5.1",
|
|
"graphql-upload": "^12.0.0",
|
|
"koa": "^2.13.1",
|
|
"make-dir": "^3.1.0",
|
|
"shortid": "^2.2.16"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-env": "^22.0.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.24.0",
|
|
"eslint-plugin-jsdoc": "^36.0.7",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"nodemon": "^2.0.12",
|
|
"prettier": "^2.3.2"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run test:eslint && npm run test:prettier",
|
|
"test:eslint": "eslint .",
|
|
"test:prettier": "prettier -c .",
|
|
"dev": "nodemon",
|
|
"start": "node -r dotenv/config server.mjs"
|
|
}
|
|
}
|