-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.62 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@lemoncode/monorepo",
"private": true,
"type": "module",
"packageManager": "npm@11.9.0",
"engines": {
"node": ">=24",
"npm": ">=11"
},
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"scripts": {
"start": "node --run dev",
"dev": "tsx tooling/dev-cli/dev.ts",
"build": "turbo build",
"test": "turbo test",
"test:watch": "tsx tooling/dev-cli/test-watch.ts",
"test:coverage": "turbo test:coverage",
"check-types": "turbo check-types",
"e2e": "turbo e2e",
"ci:e2e": "turbo ci:e2e",
"install:test-browsers": "npx playwright install --with-deps",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"changeset": "changeset",
"publish:npm": "tsx tooling/publish/publish-npm.ts",
"publish:vscode": "tsx tooling/publish/publish-vscode.ts",
"start:local-npm-registry": "npm run build && cd ./local-npm-registry && npm start",
"stop:local-npm-registry": "cd ./local-npm-registry && npm stop",
"local:publish": "node --run start:local-npm-registry && changeset version && node local-npm-registry/publish.js changeset publish",
"prepare": "husky || \"No need to install husky\""
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.css": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@types/node": "24.12.2",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"oxlint": "1.60.0",
"prettier": "3.8.3",
"tsx": "4.21.0",
"turbo": "2.9.6",
"typescript": "6.0.2"
}
}