standardnotes-server/package.json

72 lines
3.3 KiB
JSON
Raw Normal View History

2022-06-17 10:47:25 +00:00
{
"name": "@standardnotes/server-monorepo",
"private": true,
"author": "Standard Notes",
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
2022-06-17 11:06:44 +00:00
"scripts": {
2022-06-22 10:33:00 +00:00
"lint": "yarn workspaces foreach -p -j 10 --verbose run lint",
"lint:auth": "yarn workspace @standardnotes/auth-server lint",
2022-06-21 12:33:45 +00:00
"lint:scheduler": "yarn workspace @standardnotes/scheduler-server lint",
2022-06-22 14:16:03 +00:00
"lint:syncing-server": "yarn workspace @standardnotes/syncing-server lint",
2022-06-22 14:44:45 +00:00
"lint:files": "yarn workspace @standardnotes/files-server lint",
2022-06-23 09:33:14 +00:00
"lint:api-gateway": "yarn workspace @standardnotes/api-gateway lint",
2022-07-11 09:58:13 +00:00
"lint:event-store": "yarn workspace @standardnotes/event-store lint",
2022-06-22 10:33:00 +00:00
"test": "yarn workspaces foreach -p -j 10 --verbose run test",
"test:auth": "yarn workspace @standardnotes/auth-server test",
2022-06-21 12:04:58 +00:00
"test:scheduler": "yarn workspace @standardnotes/scheduler-server test",
2022-06-22 14:16:03 +00:00
"test:syncing-server": "yarn workspace @standardnotes/syncing-server test",
2022-06-22 14:44:45 +00:00
"test:files": "yarn workspace @standardnotes/files-server test",
2022-07-11 09:58:13 +00:00
"test:event-store": "yarn workspace @standardnotes/event-store test",
2022-06-22 10:33:00 +00:00
"clean": "yarn workspaces foreach -p --verbose run clean",
"setup:env": "cp .env.sample .env && yarn workspaces foreach -p --verbose run setup:env",
2022-06-22 10:33:00 +00:00
"build": "yarn workspaces foreach -pt -j 10 --verbose run build",
"build:auth": "yarn workspace @standardnotes/auth-server build",
2022-06-21 12:04:58 +00:00
"build:scheduler": "yarn workspace @standardnotes/scheduler-server build",
2022-06-22 14:16:03 +00:00
"build:syncing-server": "yarn workspace @standardnotes/syncing-server build",
2022-06-22 14:44:45 +00:00
"build:files": "yarn workspace @standardnotes/files-server build",
2022-06-23 09:33:14 +00:00
"build:api-gateway": "yarn workspace @standardnotes/api-gateway build",
2022-06-22 10:33:00 +00:00
"start:auth": "yarn workspace @standardnotes/auth-server start",
"start:auth-worker": "yarn workspace @standardnotes/auth-server worker",
2022-06-21 12:04:58 +00:00
"start:scheduler": "yarn workspace @standardnotes/scheduler-server worker",
2022-06-22 14:16:03 +00:00
"start:syncing-server": "yarn workspace @standardnotes/syncing-server start",
"start:syncing-server-worker": "yarn workspace @standardnotes/syncing-server worker",
2022-06-22 14:44:45 +00:00
"start:files": "yarn workspace @standardnotes/files-server start",
"start:files-worker": "yarn workspace @standardnotes/files-server worker",
2022-06-23 09:33:14 +00:00
"start:api-gateway": "yarn workspace @standardnotes/api-gateway start",
2022-07-06 08:01:18 +00:00
"release": "lerna version --conventional-graduate --conventional-commits --yes -m \"chore(release): publish new version\"",
"publish": "lerna publish from-git --yes --no-verify-access --loglevel verbose",
2022-06-27 21:44:43 +00:00
"postversion": "./scripts/push-tags-one-by-one.sh",
"upgrade:snjs": "yarn workspaces foreach --verbose run upgrade:snjs"
2022-06-17 11:06:44 +00:00
},
2022-06-17 10:47:25 +00:00
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
2022-06-20 08:31:54 +00:00
"@lerna-lite/cli": "^1.5.1",
"@lerna-lite/list": "^1.5.1",
"@lerna-lite/run": "^1.5.1",
2022-07-12 18:31:29 +00:00
"@types/jest": "^28.1.4",
"@types/newrelic": "^7.0.3",
"@types/node": "^18.0.0",
2022-06-21 12:25:56 +00:00
"@typescript-eslint/parser": "^5.29.0",
2022-06-17 10:47:25 +00:00
"eslint": "^8.17.0",
2022-06-21 12:25:56 +00:00
"eslint-config-prettier": "^8.5.0",
2022-06-27 21:52:20 +00:00
"ini": "^3.0.0",
2022-07-14 14:04:34 +00:00
"npm-check-updates": "^15.3.3",
2022-06-21 12:25:56 +00:00
"prettier": "^2.7.1",
2022-06-17 11:19:22 +00:00
"ts-node": "^10.8.1",
2022-06-21 09:26:15 +00:00
"typescript": "^4.7.4"
2022-06-17 10:47:25 +00:00
},
"packageManager": "yarn@3.2.1",
"dependencies": {
2022-06-27 04:59:15 +00:00
"@sentry/node": "^7.3.0",
"newrelic": "^8.14.1"
}
2022-06-17 10:47:25 +00:00
}