73 lines
2.1 KiB
JSON
73 lines
2.1 KiB
JSON
{
|
|
"name": "@mifi/grow-api",
|
|
"version": "0.0.1",
|
|
"main": "server.js",
|
|
"author": "mifi (Mike Fitzpatrick)",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "tslint --project tsconfig.json --format stylish",
|
|
"prettier:fix": "prettier-eslint --eslint-config-path ./.eslintrc.js --write '**/*.ts'",
|
|
"serve": "ts-node src/server.ts",
|
|
"start": "nodemon"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node16": "^1.0.3",
|
|
"@types/crypto-js": "^4.1.1",
|
|
"@types/dotenv": "^8.2.0",
|
|
"@types/http-status-codes": "^1.2.0",
|
|
"@types/jsonwebtoken": "^9.0.1",
|
|
"@types/koa": "^2.13.5",
|
|
"@types/koa-bodyparser": "^4.3.10",
|
|
"@types/koa-cookie": "^1.0.0",
|
|
"@types/koa-passport": "^4.0.3",
|
|
"@types/koa-router": "^7.4.4",
|
|
"@types/koa-session": "^5.10.6",
|
|
"@types/luxon": "^3.2.0",
|
|
"@types/mongoose": "^5.11.97",
|
|
"@types/node": "^18.14.0",
|
|
"@types/passport": "^1.0.12",
|
|
"@types/passport-facebook": "^2.1.11",
|
|
"@types/passport-fido2-webauthn": "^0.1.0",
|
|
"@types/passport-google-oauth": "^1.0.42",
|
|
"@types/passport-jwt": "^3.0.8",
|
|
"@types/passport-local": "^1.0.35",
|
|
"jest": "^29.4.2",
|
|
"nodemon": "^2.0.20",
|
|
"prettier": "^2.8.4",
|
|
"prettier-eslint": "^15.0.1",
|
|
"prettier-eslint-cli": "^7.1.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"ts-node": "^10.9.1",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-airbnb": "^5.11.2",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"dependencies": {
|
|
"@mifi/grow-db": "0.0.1",
|
|
"crypto": "^1.0.1",
|
|
"dotenv": "^16.0.3",
|
|
"http-status-codes": "^2.2.0",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"koa": "^2.14.1",
|
|
"koa-bodyparser": "^4.3.0",
|
|
"koa-cookie": "^1.0.0",
|
|
"koa-passport": "^6.0.0",
|
|
"koa-router": "^12.0.0",
|
|
"koa-session": "^6.4.0",
|
|
"luxon": "^3.3.0",
|
|
"mongoose": "^6.9.2",
|
|
"passport": "^0.6.0",
|
|
"passport-facebook": "^3.0.0",
|
|
"passport-fido2-webauthn": "^0.1.0",
|
|
"passport-google-oauth": "^2.0.0",
|
|
"passport-jwt": "^4.0.1",
|
|
"passport-local": "^1.0.0"
|
|
},
|
|
"description": "",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.mifi.dev/mifi/grow-api.git"
|
|
}
|
|
}
|