95 lines
2.4 KiB
JSON
95 lines
2.4 KiB
JSON
{
|
|
"name": "wildflock",
|
|
"description": "Aliases for Wild Duck",
|
|
"version": "1.0.0",
|
|
"homepage": "",
|
|
"private": false,
|
|
"keywords": [
|
|
"feathers"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Sergii",
|
|
"url": "https://github.com/msergo"
|
|
},
|
|
{
|
|
"name": "Erki",
|
|
"url": "https://github.com/veebkolm"
|
|
}
|
|
],
|
|
"contributors": [],
|
|
"bugs": {},
|
|
"engines": {
|
|
"node": ">= 16.19.1"
|
|
},
|
|
"feathers": {
|
|
"language": "ts",
|
|
"packager": "npm",
|
|
"database": "other",
|
|
"framework": "express",
|
|
"transports": [
|
|
"rest",
|
|
"websockets"
|
|
],
|
|
"schema": false
|
|
},
|
|
"directories": {
|
|
"lib": "src",
|
|
"test": "test"
|
|
},
|
|
"main": "lib/index",
|
|
"scripts": {
|
|
"dev": "nodemon -x ts-node src/index.ts",
|
|
"compile": "shx rm -rf lib/ && tsc",
|
|
"start": "node lib/",
|
|
"prettier": "npx prettier \"**/*.ts\" --write",
|
|
"mocha": "cross-env NODE_ENV=test mocha test/ --require ts-node/register --recursive --extension .ts --exit",
|
|
"test": "npm run mocha",
|
|
"bundle:client": "npm run compile && npm pack --pack-destination ./public"
|
|
},
|
|
"dependencies": {
|
|
"@faker-js/faker": "^8.0.2",
|
|
"@feathersjs/adapter-commons": "^5.0.8",
|
|
"@feathersjs/authentication": "^5.0.8",
|
|
"@feathersjs/authentication-client": "^5.0.8",
|
|
"@feathersjs/configuration": "^5.0.8",
|
|
"@feathersjs/errors": "^5.0.8",
|
|
"@feathersjs/express": "^5.0.8",
|
|
"@feathersjs/feathers": "^5.0.8",
|
|
"@feathersjs/schema": "^5.0.8",
|
|
"@feathersjs/socketio": "^5.0.8",
|
|
"@feathersjs/transport-commons": "^5.0.8",
|
|
"axios": "^1.4.0",
|
|
"compression": "^1.7.4",
|
|
"config": "^3.3.9",
|
|
"connect-redis": "^7.1.0",
|
|
"cookie-parser": "^1.4.6",
|
|
"express-session": "^1.17.3",
|
|
"ioredis": "^5.3.2",
|
|
"openid-client": "^5.6.5",
|
|
"redis": "^4.6.7",
|
|
"winston": "^3.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@feathersjs/cli": "^5.0.8",
|
|
"@feathersjs/rest-client": "^5.0.8",
|
|
"@types/cookie-parser": "^1.4.3",
|
|
"@types/express-session": "^1.17.7",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^20.4.5",
|
|
"@types/redis": "^4.0.11",
|
|
"cross-env": "^7.0.3",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.2.3",
|
|
"mocha": "^10.2.0",
|
|
"nodemon": "^3.0.1",
|
|
"prettier": "^3.0.0",
|
|
"shx": "^0.3.4",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js,css,md}": "prettier --write"
|
|
}
|
|
}
|