-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
28 lines (28 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "root",
"private": true,
"scripts": {
"lerna": "lerna",
"publish": "lerna version $npm_config_release --no-private",
"postpublish": "node copy-changelog.js && git add . && git commit -m 'Update packages CHANGELOG.md' && git push",
"start:desktop": "lerna run --scope @quiet/desktop start",
"lint:all": "lerna run lint",
"distAndRunE2ETests:mac:local": "lerna run --scope @quiet/desktop distMac:local && lerna run --scope e2e-tests test:localBinary --",
"e2e:linux:build": "lerna run --scope @quiet/backend webpack:prod && lerna run --scope @quiet/desktop distUbuntu && lerna run --scope e2e-tests linux:copy",
"e2e:linux:run": "lerna run --scope e2e-tests test --",
"prepare": "husky",
"lint-staged": "lerna run lint-staged",
"watch": "lerna watch -- lerna run build --since",
"build:auth": "cd ./3rd-party/auth && pnpm install && pnpm build"
},
"engines": {
"node": "18.12.1",
"npm": "8.19.2"
},
"devDependencies": {
"husky": "^9.0.11",
"lerna": "^6.6.2",
"typescript": "^4.9.3",
"pnpm": "^9.12.1"
}
}