mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
- @standardnotes/analytics@2.21.6 - @standardnotes/api-gateway@1.49.9 - @standardnotes/auth-server@1.95.2 - @standardnotes/domain-events-infra@1.10.0 - @standardnotes/domain-events@2.109.0 - @standardnotes/event-store@1.7.8 - @standardnotes/files-server@1.10.10 - @standardnotes/revisions-server@1.12.13 - @standardnotes/scheduler-server@1.17.10 - @standardnotes/syncing-server@1.32.6 - @standardnotes/websockets-server@1.6.11
81 lines
2.6 KiB
JSON
81 lines
2.6 KiB
JSON
{
|
|
"name": "@standardnotes/syncing-server",
|
|
"version": "1.32.6",
|
|
"engines": {
|
|
"node": ">=18.0.0 <19.0.0"
|
|
},
|
|
"private": true,
|
|
"description": "Syncing Server",
|
|
"main": "dist/src/index.js",
|
|
"typings": "dist/src/index.d.ts",
|
|
"repository": "git@github.com:standardnotes/syncing-server-js.git",
|
|
"author": "Karol Sójko <karolsojko@standardnotes.com>",
|
|
"license": "AGPL-3.0-or-later",
|
|
"scripts": {
|
|
"clean": "rm -fr dist",
|
|
"setup:env": "cp .env.sample .env",
|
|
"build": "tsc --build",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"pretest": "yarn lint && yarn build",
|
|
"test": "jest --coverage --config=./jest.config.js --maxWorkers=50%",
|
|
"start": "yarn node dist/bin/server.js",
|
|
"worker": "yarn node dist/bin/worker.js",
|
|
"content-size": "yarn node dist/bin/content.js",
|
|
"upgrade:snjs": "yarn ncu -u '@standardnotes/*'"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.259.0",
|
|
"@aws-sdk/client-sns": "^3.259.0",
|
|
"@aws-sdk/client-sqs": "^3.259.0",
|
|
"@newrelic/winston-enricher": "^4.0.1",
|
|
"@sentry/node": "^7.28.1",
|
|
"@sentry/tracing": "^7.28.1",
|
|
"@standardnotes/api": "^1.25.3",
|
|
"@standardnotes/common": "workspace:*",
|
|
"@standardnotes/domain-core": "workspace:^",
|
|
"@standardnotes/domain-events": "workspace:*",
|
|
"@standardnotes/domain-events-infra": "workspace:*",
|
|
"@standardnotes/responses": "^1.13.9",
|
|
"@standardnotes/security": "workspace:*",
|
|
"@standardnotes/settings": "workspace:*",
|
|
"@standardnotes/time": "workspace:*",
|
|
"axios": "^1.1.3",
|
|
"cors": "2.8.5",
|
|
"dotenv": "^16.0.1",
|
|
"express": "^4.18.2",
|
|
"helmet": "^6.0.0",
|
|
"inversify": "^6.0.1",
|
|
"inversify-express-utils": "^6.4.3",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"mysql2": "^3.0.1",
|
|
"newrelic": "^9.14.1",
|
|
"nodemon": "^2.0.19",
|
|
"prettyjson": "^1.2.5",
|
|
"reflect-metadata": "0.1.13",
|
|
"typeorm": "^0.3.10",
|
|
"ua-parser-js": "^1.0.32",
|
|
"uuid": "^9.0.0",
|
|
"winston": "^3.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.9",
|
|
"@types/dotenv": "^8.2.0",
|
|
"@types/express": "^4.17.14",
|
|
"@types/inversify-express-utils": "^2.0.0",
|
|
"@types/jest": "^29.1.1",
|
|
"@types/jsonwebtoken": "^9.0.1",
|
|
"@types/newrelic": "^9.4.0",
|
|
"@types/prettyjson": "^0.0.30",
|
|
"@types/ua-parser-js": "^0.7.36",
|
|
"@types/uuid": "^8.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
"eslint": "^8.32.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^29.1.2",
|
|
"npm-check-updates": "^16.0.1",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|