-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.49 KB
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
{
"private": true,
"name": "tracky-mouse-monorepo",
"description": "This package contains scripts shared between packages.",
"version": "2.9.0",
"CAN'T USE NPM WORKSPACES, see: https://github.com/1j01/tracky-mouse/issues/53": [
"core",
"desktop-app",
"website"
],
"scripts": {
"install-all": "npm install && cd core && npm install && cd .. && cd website && npm install && cd .. && cd desktop-app && npm install && cd ..",
"website": "cd website && npm run start",
"in-website": "cd website &&",
"desktop-app": "cd desktop-app && npm run start",
"in-desktop-app": "cd desktop-app &&",
"desktop": "cd desktop-app && npm run start",
"in-desktop": "cd desktop-app &&",
"start": "cd desktop-app && npm run start",
"in-core": "cd core &&",
"lint-cspell": "cspell-cli lint .",
"lint-eslint": "eslint .",
"lint-i18next": "i18next-cli status",
"lint": "npm-run-all --continue-on-error --serial lint-*",
"update-cli-docs": "node scripts/update-cli-docs.js",
"update-locales": "node scripts/update-locales.js",
"new-locale": "node scripts/new-locale.js",
"translate": "localazy upload && localazy download",
"release": "node scripts/release/release.js"
},
"bin": {
"tracky-mouse": "desktop-app/src/tracky-mouse-bin.js"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@localazy/cli": "^2.0.8",
"@types/eslint": "^8.56.9",
"cspell-cli": "^8.7.0",
"eslint": "^9.0.0",
"fast-glob": "^3.3.3",
"i18next-cli": "^1.42.12",
"npm-run-all": "^4.1.5",
"picomatch": "^4.0.3"
}
}