mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
77 lines
2.3 KiB
JSON
77 lines
2.3 KiB
JSON
{
|
|
"name": "@standardnotes/files-server",
|
|
"version": "1.3.0",
|
|
"engines": {
|
|
"node": ">=16.0.0 <17.0.0"
|
|
},
|
|
"private": true,
|
|
"description": "Standard Notes Files Server",
|
|
"main": "dist/src/index.js",
|
|
"typings": "dist/src/index.d.ts",
|
|
"repository": "git@github.com:standardnotes/files.git",
|
|
"authors": [
|
|
"Karol Sójko <karol@standardnotes.com>"
|
|
],
|
|
"license": "AGPL-3.0-or-later",
|
|
"scripts": {
|
|
"clean": "rm -fr dist",
|
|
"setup:env": "cp .env.sample .env",
|
|
"prebuild": "yarn clean",
|
|
"build": "tsc --rootDir ./",
|
|
"lint": "eslint . --ext .ts",
|
|
"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",
|
|
"upgrade:snjs": "yarn ncu -u '@standardnotes/*'"
|
|
},
|
|
"dependencies": {
|
|
"@sentry/node": "^7.3.0",
|
|
"@standardnotes/common": "workspace:*",
|
|
"@standardnotes/domain-events": "workspace:*",
|
|
"@standardnotes/domain-events-infra": "workspace:*",
|
|
"@standardnotes/security": "workspace:*",
|
|
"@standardnotes/sncrypto-common": "^1.9.0",
|
|
"@standardnotes/sncrypto-node": "^1.8.3",
|
|
"@standardnotes/time": "workspace:*",
|
|
"aws-sdk": "^2.1158.0",
|
|
"connect-busboy": "^1.0.0",
|
|
"cors": "^2.8.5",
|
|
"dayjs": "^1.11.3",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"express-winston": "^4.0.5",
|
|
"helmet": "^4.3.1",
|
|
"inversify": "^6.0.1",
|
|
"inversify-express-utils": "^6.4.3",
|
|
"ioredis": "^5.0.6",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"newrelic": "^8.14.1",
|
|
"nodemon": "^2.0.15",
|
|
"prettyjson": "^1.2.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"ts-node": "^10.4.0",
|
|
"winston": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@standardnotes/config": "2.4.3",
|
|
"@types/connect-busboy": "^1.0.0",
|
|
"@types/cors": "^2.8.9",
|
|
"@types/express": "^4.17.11",
|
|
"@types/ioredis": "^4.28.10",
|
|
"@types/jest": "^28.1.3",
|
|
"@types/jsonwebtoken": "^8.5.0",
|
|
"@types/newrelic": "^7.0.3",
|
|
"@types/prettyjson": "^0.0.29",
|
|
"@types/uuid": "^8.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
"eslint": "^8.14.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^28.1.1",
|
|
"nodemon": "^2.0.16",
|
|
"npm-check-updates": "^14.1.1",
|
|
"ts-jest": "^28.0.1",
|
|
"uuid": "^8.3.2"
|
|
}
|
|
}
|