standardnotes-server/package.json

48 lines
1.7 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": ">=18.0.0 <21.0.0"
2022-06-17 10:47:25 +00:00
},
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:fix": "yarn workspaces foreach -p -j 10 --verbose run lint:fix",
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-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",
"e2e": "yarn build packages/home-server && PORT=3123 yarn workspace @standardnotes/home-server start",
"start": "yarn build packages/home-server && yarn workspace @standardnotes/home-server start"
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",
2023-05-08 10:31:56 +00:00
"@lerna-lite/cli": "^2.3.0",
"@lerna-lite/list": "^2.3.0",
2023-05-30 11:54:28 +00:00
"@lerna-lite/publish": "^2.4.0",
2023-05-08 10:31:56 +00:00
"@lerna-lite/run": "^2.3.0",
2023-05-08 10:33:41 +00:00
"@lerna-lite/version": "^2.3.0",
2023-05-05 08:49:47 +00:00
"@types/jest": "^29.5.1",
2023-08-30 05:48:00 +00:00
"@types/node": "^20.5.7",
2023-05-05 09:22:16 +00:00
"eslint": "^8.39.0",
2023-05-05 08:58:36 +00:00
"eslint-config-prettier": "^8.8.0",
2023-08-30 05:48:00 +00:00
"ini": "^4.1.1",
"npm-check-updates": "^16.13.2",
2022-08-29 11:57:37 +00:00
"ts-node": "^10.9.1",
2023-05-05 08:53:25 +00:00
"typescript": "^5.0.4"
2022-06-17 10:47:25 +00:00
},
2023-05-05 08:34:23 +00:00
"packageManager": "yarn@4.0.0-rc.43",
"optionalDependencies": {
2023-08-30 05:48:00 +00:00
"@types/newrelic": "^9.14.0",
"newrelic": "^11.0.0"
}
2022-06-17 10:47:25 +00:00
}