023f90456b
- @standardnotes/scheduler-server@1.1.0-alpha.4
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "@standardnotes/scheduler-server",
|
|
"version": "1.1.0-alpha.4",
|
|
"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 --collect-coverage --config=./jest.config.js --runInBand",
|
|
"worker": "yarn node dist/bin/worker.js",
|
|
"verify:jobs": "yarn node dist/bin/verify.js",
|
|
"setup:env": "cp .env.sample .env",
|
|
"typeorm": "typeorm-ts-node-commonjs"
|
|
},
|
|
"dependencies": {
|
|
"@newrelic/native-metrics": "7.0.2",
|
|
"@newrelic/winston-enricher": "^2.1.0",
|
|
"@standardnotes/common": "^1.23.0",
|
|
"@standardnotes/domain-events": "^2.32.0",
|
|
"@standardnotes/domain-events-infra": "^1.5.0",
|
|
"@standardnotes/scheduler": "^1.1.0",
|
|
"@standardnotes/time": "^1.7.0",
|
|
"aws-sdk": "^2.1158.0",
|
|
"dayjs": "^1.11.3",
|
|
"dotenv": "8.2.0",
|
|
"inversify": "5.0.5",
|
|
"ioredis": "^5.0.6",
|
|
"mysql2": "^2.3.3",
|
|
"newrelic": "8.6.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"typeorm": "^0.3.6",
|
|
"winston": "3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ioredis": "^4.28.10",
|
|
"@types/jest": "^28.1.2",
|
|
"@types/newrelic": "^7.0.2",
|
|
"@types/node": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^28.1.1",
|
|
"ts-jest": "^28.0.5"
|
|
},
|
|
"jest": {
|
|
"preset": "../../.yarn/unplugged/@standardnotes-config-npm-2.4.3-f16699e480/node_modules/@standardnotes/config/src/jest.json",
|
|
"coveragePathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/Bootstrap/"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/test-setup.ts"
|
|
]
|
|
}
|
|
}
|