dockerfile/examples/standardnotes/official-src/server-main/packages/home-server/package.json

57 lines
1.6 KiB
JSON
Raw Normal View History

2024-03-15 14:52:38 +08:00
{
"name": "@standardnotes/home-server",
"version": "1.22.20",
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"description": "Standard Notes Home Server",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:standardnotes/server.git",
"directory": "packages/home-server"
},
"author": "Karol Sójko <karol@standardnotes.com>",
"publishConfig": {
"access": "public",
"provenance": true
},
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"start": "yarn node dist/bin/server.js"
},
"dependencies": {
"@standardnotes/api-gateway": "workspace:^",
"@standardnotes/auth-server": "workspace:^",
"@standardnotes/domain-core": "workspace:^",
"@standardnotes/domain-events-infra": "workspace:^",
"@standardnotes/files-server": "workspace:^",
"@standardnotes/revisions-server": "workspace:^",
"@standardnotes/syncing-server": "workspace:^",
"cors": "2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"express-robots-txt": "^1.0.0",
"helmet": "^7.0.0",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"reflect-metadata": "0.1.13",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.0.4"
}
}