-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.65 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "freelens-monorepo",
"private": true,
"workspaces": [
"packages/**/*",
"freelens"
],
"author": {
"name": "Freelens Authors",
"email": "[email protected]"
},
"scripts": {
"build": "npx -y lerna run --stream build",
"build:app": "cd freelens && npm run build:app",
"rebuild": "npx -y lerna run --stream rebuild",
"clean": "npx -y lerna run clean --stream",
"clean:node_modules": "npx -y lerna clean -y && rimraf node_modules",
"dev": "cross-env NODE_ENV=development npx -y lerna run build --stream --skip-nx-cache",
"postdev": "npx -y lerna watch -- npx -y lerna run build --stream --include-dependents --scope \\$LERNA_PACKAGE_NAME",
"prestart-dev": "cd freelens && npm run build:tray-icons && npm run download:binaries",
"start-dev": "npx -y lerna run start",
"postinstall": "linkable",
"lint": "npx -y lerna run lint --stream --no-bail",
"lint:fix": "npx -y lerna run lint:fix --stream",
"test:unit": "npx -y lerna run --stream test:unit --no-bail",
"test:unit:updatesnapshot": "npx -y lerna run --stream test:unit --no-bail -- -u",
"test:unit:watch": "jest --watch",
"test:integration": "npx -y lerna run --stream test:integration --no-bail",
"bump-version": "npx -y lerna version --no-git-tag-version --no-push",
"compute-versions": "npx -y lerna run --stream compute-versions"
},
"overrides": {
"underscore": "^1.12.1",
"react": "^17.0.2",
"@types/react": "^17.0.83"
},
"devDependencies": {
"@ogre-tools/linkable": "^17.11.1",
"cross-env": "^7.0.3",
"npm": "10.8.2",
"rimraf": "^6.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}