standardnotes-server/package.json

52 lines
1.7 KiB
JSON
Raw Permalink 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": {
"lint": "yarn workspaces foreach -ptA run lint",
"lint:fix": "yarn workspaces foreach -ptA run lint:fix",
"clean": "yarn workspaces foreach -ptA run clean",
"build": "yarn workspaces foreach -ptA run build",
"test": "yarn workspaces foreach -ptA run test",
"setup:env": "cp .env.sample .env && yarn workspaces foreach -ptA 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",
"e2e": "yarn build && PORT=3123 yarn workspace @standardnotes/home-server start",
2023-09-18 12:18:17 +00:00
"start": "yarn workspace @standardnotes/home-server run build && 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",
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
},
"packageManager": "yarn@4.0.2",
"dependenciesMeta": {
"grpc-tools@1.12.4": {
"unplugged": true
},
"grpc_tools_node_protoc_ts@5.3.3": {
"unplugged": true
}
}
2022-06-17 10:47:25 +00:00
}