55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@standardnotes/scheduler-server",
|
|
"version": "1.0.0",
|
|
"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",
|
|
"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/domain-events": "^2.32.0",
|
|
"@standardnotes/domain-events-infra": "^1.5.0",
|
|
"@standardnotes/scheduler": "^1.1.0",
|
|
"@standardnotes/time": "^1.7.0",
|
|
"dotenv": "8.2.0",
|
|
"inversify": "5.0.5",
|
|
"ioredis": "^4.28.3",
|
|
"mysql2": "^2.3.3",
|
|
"newrelic": "8.6.0",
|
|
"reflect-metadata": "0.1.13",
|
|
"typeorm": "^0.3.6",
|
|
"winston": "3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@standardnotes/config": "^2.4.3",
|
|
"@types/ioredis": "^4.28.10",
|
|
"@types/newrelic": "^7.0.2"
|
|
},
|
|
"jest": {
|
|
"preset": "../../node_modules/@standardnotes/config/src/jest.json",
|
|
"coveragePathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/Bootstrap/"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/test-setup.ts"
|
|
]
|
|
}
|
|
}
|