-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "lawallet-monorepo",
"private": true,
"type": "module",
"prettier": "@lacrypta/prettier-config",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean && rm -rf node_modules",
"postinstall": "pnpm build:libs && pnpm link-plugins-cli",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"build:react": "pnpm --filter @lawallet/react build",
"build:utils": "pnpm --filter @lawallet/utils build && pnpm --filter @lawallet/plugins-cli build",
"build:ui": "pnpm --filter @lawallet/ui build",
"build:libs": "pnpm build --filter=./packages/*",
"build:plugins": "pnpm build --filter=./plugins/* && pnpm webapp-plugins-config",
"build:web": "pnpm --filter lawallet-front build",
"build:docs": "pnpm --filter @lawallet/docs build",
"web:dev": "pnpm --filter lawallet-front dev",
"web:start": "pnpm --filter lawallet-front start",
"docs:dev": "pnpm --filter @lawallet/docs dev:docs",
"docs:start": "pnpm --filter @lawallet/docs start:docs",
"ui:dev": "pnpm --filter @lawallet/ui dev",
"link-plugins-cli": "pnpm --filter @lawallet/plugins-cli install --ignore-scripts",
"add-plugin": "lawallet-plugins add",
"create-plugin": "lawallet-plugins create",
"webapp-plugins-config": "lawallet-plugins webapp-config"
},
"dependencies": {
"@lawallet/plugins-cli": "workspace:*"
},
"devDependencies": {
"@lacrypta/eslint-config": "^1.0.1",
"@lacrypta/prettier-config": "^1.0.0",
"@lacrypta/typescript-config": "^1.0.0",
"eslint-config-turbo": "^1.13.3",
"prettier": "^3.2.5",
"turbo": "^2.0.3"
},
"packageManager": "[email protected]",
"overrides": {
"nostr-tools": "npm:@lawallet/nostr-tools"
},
"pnpm": {
"overrides": {
"nostr-tools": "npm:@lawallet/nostr-tools"
}
},
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*",
"config/*",
"plugins/*"
]
}