-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.37 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
58
59
60
61
62
{
"name": "nado-sdk-monorepo",
"version": "0.1.0",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"private": true,
"scripts": {
"build": "lerna run build",
"clean": "rm -rf .nx && lerna run clean",
"dev": "lerna run dev",
"gen-typedoc": "typedoc",
"link-local": "./setup-links.sh",
"lint": "eslint --cache --fix './**/*.{ts,tsx}' && prettier --write './**/*.{ts,tsx}'",
"format": "prettier --write './packages/**/*.{js,jsx,ts,tsx,css,md}' --log-level warn",
"prepare": "husky",
"publish-all": "bun clean && bun run build && lerna publish --force-publish --no-private",
"publish-dry-run": "bun clean && bun run build && bunx lerna version --no-git-tag-version --no-push --force-publish --no-private",
"test:unit": "jest --root-dir='./packages'",
"test:e2e": "bun run build && bun --cwd apps/e2e e2e",
"test:e2e:retry": "bun run build && bun --cwd apps/e2e e2e:retry",
"test:e2e:client": "bun run build && bun --cwd apps/e2e e2e:client",
"test:e2e:engine": "bun run build && bun --cwd apps/e2e e2e:engine",
"test:e2e:indexer": "bun run build && bun --cwd apps/e2e e2e:indexer",
"test:e2e:nuanze": "bun run build && bun --cwd apps/e2e e2e:nuanze",
"test:e2e:trigger": "bun run build && bun --cwd apps/e2e e2e:trigger",
"test:e2e:mobile": "bun run build && bun --cwd apps/e2e e2e:mobile",
"typecheck": "lerna run typecheck",
"unlink-local": "UNLINK=true ./setup-links.sh",
"depcruise:all": "depcruise packages/* apps/*"
},
"devDependencies": {
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@eslint/js": "9.39.4",
"@types/node": "24.12.4",
"@typescript-eslint/eslint-plugin": "8.59.3",
"@typescript-eslint/parser": "8.59.3",
"dependency-cruiser": "17.4.0",
"tsdown": "0.22.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-prettier": "5.5.5",
"husky": "9.1.7",
"jest": "30.4.2",
"lerna": "9.0.7",
"lint-staged": "17.0.5",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "4.3.0",
"ts-jest": "29.4.11",
"tsx": "4.22.0",
"typedoc": "0.28.19",
"typedoc-plugin-extras": "4.0.1",
"typedoc-plugin-missing-exports": "4.1.3",
"typescript": "6.0.3",
"typescript-eslint": "8.59.3"
},
"packageManager": "bun@1.3.14"
}