@forrestjs/kitchensink
Version:
ForrestJS demonstrational tool
98 lines (97 loc) • 6.28 kB
JSON
{
"name": "@forrestjs/kitchensink",
"description": "ForrestJS demonstrational tool",
"version": "5.2.2",
"author": "Marco Pegoraro <marco.pegoraro@gmail.com",
"bugs": {
"url": "https://github.com/forrestjs/forrestjs/issues"
},
"main": "src/index",
"scripts": {
"-- DEVELOPMENT ---": "",
"clean": "rm -rf node_modules && rm -f yarn.lock && rm -f package-lock.json",
"link": "(cd ../../ && npm run link)",
"boot": "npm run clean && npm install && npm run link",
"-- RUN PROJECTS ---": "",
"start:hooks": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon hooks",
"start:service-fastify": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-fastify",
"test:service-fastify": "jest -t service-fastify-standalone --runInBand ",
"tdd:service-fastify": "jest -t service-fastify-standalone --runInBand --watchAll",
"start:service-fastify-static": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-fastify-static",
"test:service-fastify-static": "jest -t service-fastify-static --runInBand ",
"tdd:service-fastify-static": "jest -t service-fastify-static --runInBand --watchAll",
"start:service-fastify-cors": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-fastify-cors",
"test:service-fastify-cors": "jest -t service-fastify-cors --runInBand ",
"tdd:service-fastify-cors": "jest -t service-fastify-cors --runInBand --watchAll",
"start:service-fastify-cookie": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-fastify-cookie",
"test:service-fastify-cookie": "jest -t service-fastify-cookie --runInBand ",
"tdd:service-fastify-cookie": "jest -t service-fastify-cookie --runInBand --watchAll",
"start:service-fastify-gql": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-fastify-gql",
"test:service-fastify-gql": "jest -t service-fastify-gql --runInBand ",
"tdd:service-fastify-gql": "jest -t service-fastify-gql --runInBand --watchAll",
"start:service-fastify-healthz": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-fastify-healthz",
"test:service-fastify-healthz": "jest -t service-fastify-healthz --runInBand ",
"tdd:service-fastify-healthz": "jest -t service-fastify-healthz --runInBand --watchAll",
"start:service-jwt": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-jwt",
"test:service-jwt": "jest -t service-jwt --runInBand ",
"tdd:service-jwt": "jest -t service-jwt --runInBand --watchAll",
"start:service-hash": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-hash",
"test:service-hash": "jest -t service-hash --runInBand ",
"tdd:service-hash": "jest -t service-hash --runInBand --watchAll",
"start:service-fetchq": "cross-env NODE_ENV=development PGSTRING=postgres://postgres:postgres@localhost:5432/postgres DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-fetchq",
"test:service-fetchq": "jest -t service-fetchq --runInBand ",
"tdd:service-fetchq": "jest -t service-fetchq-client --runInBand --watchAll",
"start:service-fetchq-task": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-fetchq-task",
"test:service-fetchq-task": "jest -t service-fetchq-task --runInBand ",
"tdd:service-fetchq-task": "jest -t service-fetchq-task --runInBand --watchAll",
"start:service-apollo": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-apollo",
"test:service-apollo": "jest -t service-apollo --runInBand ",
"tdd:service-apollo": "jest -t service-apollo --runInBand --watchAll",
"start:service-logger": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-logger",
"test:service-logger": "jest -t service-logger --runInBand ",
"tdd:service-logger": "jest -t service-logger --runInBand --watchAll",
"start:service-pg": "cross-env NODE_ENV=development PGSTRING=postgres://postgres:postgres@localhost:5432/postgres DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon service-pg",
"test:service-pg": "jest -t service-pg-standalone --runInBand ",
"tdd:service-pg": "jest -t service-pg-standalone --runInBand --watchAll",
"start:app01": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon app01",
"test:app01": "jest -t app01 --runInBand ",
"tdd:app01": "jest -t app01 --runInBand --watchAll",
"start:mock-axios-e2e": "cross-env NODE_ENV=development DANGEROUSLY_ENABLE_FASTIFY_TDD_ENDPOINT=yes npx nodemon mock-axios-e2e",
"test:mock-axios-e2e": "jest -t mock-axios-e2e --runInBand ",
"tdd:mock-axios-e2e": "jest -t mock-axios-e2e --runInBand --watchAll"
},
"dependencies": {
"@forrestjs/core": "^5.2.2",
"@forrestjs/service-apollo": "^5.2.2",
"@forrestjs/service-env": "^5.0.3",
"@forrestjs/service-fastify": "^5.2.2",
"@forrestjs/service-fastify-cookie": "^5.2.2",
"@forrestjs/service-fastify-cors": "^5.2.2",
"@forrestjs/service-fastify-gql": "^5.0.3",
"@forrestjs/service-fastify-healthz": "^5.2.2",
"@forrestjs/service-fastify-static": "^5.2.2",
"@forrestjs/service-fetchq": "^5.2.2",
"@forrestjs/service-fetchq-task": "^5.2.2",
"@forrestjs/service-hash": "^5.0.3",
"@forrestjs/service-jwt": "^5.2.2",
"@forrestjs/service-logger": "^5.0.3",
"@forrestjs/service-pg": "^5.2.2",
"fetchq": "^4.1.1"
},
"homepage": "https://github.com/forrestjs/forrestjs/tree/master/packages/service-fastify#readme",
"keywords": [
"forrestjs",
"kitchensink"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/forrestjs/forrestjs/tree/master/packages/service-fastify",
"gitHead": "ee4236096efd9072c15270927f10bc1c98aaf03a",
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^28.0.3",
"nodemon": "^2.0.16"
}
}