standardnotes-server/packages/scheduler/package.json

58 lines
1.7 KiB
JSON
Raw Normal View History

2022-06-17 13:06:44 +02:00
{
"name": "@standardnotes/scheduler-server",
"version": "1.1.0-alpha.2",
2022-06-17 13:06:44 +02:00
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"description": "Scheduler Server",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"author": "Karol Sójko <karol@standardnotes.com>",
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"prebuild": "yarn clean",
"build": "tsc --rootDir ./",
"lint": "eslint . --ext .ts",
"pretest": "yarn lint && yarn build",
"test": "jest --coverage",
2022-06-17 13:39:36 +02:00
"worker": "yarn node dist/bin/worker.js",
"verify:jobs": "yarn node dist/bin/verify.js",
"setup:env": "cp .env.sample .env",
2022-06-17 13:06:44 +02:00
"typeorm": "typeorm-ts-node-commonjs"
},
"dependencies": {
"@newrelic/native-metrics": "7.0.2",
"@newrelic/winston-enricher": "^2.1.0",
2022-06-21 11:25:52 +02:00
"@standardnotes/common": "^1.23.0",
2022-06-17 13:06:44 +02:00
"@standardnotes/domain-events": "^2.32.0",
"@standardnotes/domain-events-infra": "^1.5.0",
"@standardnotes/scheduler": "^1.1.0",
"@standardnotes/time": "^1.7.0",
2022-06-21 11:25:52 +02:00
"aws-sdk": "^2.1158.0",
"dayjs": "^1.11.3",
2022-06-17 13:06:44 +02:00
"dotenv": "8.2.0",
"inversify": "5.0.5",
2022-06-21 11:25:52 +02:00
"ioredis": "^5.0.6",
2022-06-17 13:06:44 +02:00
"mysql2": "^2.3.3",
"newrelic": "8.6.0",
2022-06-21 13:53:26 +02:00
"reflect-metadata": "^0.1.13",
2022-06-17 13:06:44 +02:00
"typeorm": "^0.3.6",
"winston": "3.3.3"
},
"devDependencies": {
2022-06-17 13:19:22 +02:00
"@types/ioredis": "^4.28.10",
"@types/newrelic": "^7.0.2"
2022-06-17 13:06:44 +02:00
},
"jest": {
2022-06-21 11:25:52 +02:00
"preset": "../../.yarn/unplugged/@standardnotes-config-npm-2.4.3-f16699e480/node_modules/@standardnotes/config/src/jest.json",
2022-06-17 13:06:44 +02:00
"coveragePathIgnorePatterns": [
"/node_modules/",
"/Bootstrap/"
],
"setupFilesAfterEnv": [
"<rootDir>/test-setup.ts"
]
}
}