51 lines
1.4 KiB
JSON
51 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.9.0 || >= 13.7.0",
|
|
"npm": ">= 7"
|
|
},
|
|
"dependencies": {
|
|
"apollo-server-koa": "^2.19.0",
|
|
"dotenv": "^8.2.0",
|
|
"graphql": "^15.4.0",
|
|
"graphql-upload": "^11.0.0",
|
|
"koa": "^2.13.0",
|
|
"lowdb": "^1.0.0",
|
|
"mkdirp": "^1.0.4",
|
|
"shortid": "^2.2.16"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.15.0",
|
|
"eslint-config-env": "^15.0.1",
|
|
"eslint-config-prettier": "^7.0.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jsdoc": "^30.7.8",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.3.0",
|
|
"nodemon": "^2.0.6",
|
|
"prettier": "^2.2.1"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run test:eslint && npm run test:prettier",
|
|
"test:eslint": "eslint .",
|
|
"test:prettier": "prettier -c .",
|
|
"dev": "nodemon -i db.json",
|
|
"start": "node -r dotenv/config server"
|
|
}
|
|
}
|