-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
27 lines (27 loc) · 999 Bytes
/
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
{
"name": "@nostr-dev-kit/ndk-react-root",
"author": "jinglescode",
"license": "Apache-2.0",
"private": true,
"scripts": {
"bootstrap": "yarn install && yarn lerna bootstrap",
"start:docs": "lerna exec --scope @nostr-dev-kit/ndk-react-docs -- yarn dev",
"start:module": "lerna exec --scope @nostr-dev-kit/ndk-react -- yarn dev",
"start:starter": "lerna exec --scope @nostr-dev-kit/ndk-react-starter -- yarn dev",
"build": "lerna link && yarn build:module && yarn build:docs",
"build:docs": "lerna exec --scope @nostr-dev-kit/ndk-react-docs -- yarn build",
"build:module": "lerna exec --scope @nostr-dev-kit/ndk-react -- yarn build",
"build:starter": "lerna exec --scope @nostr-dev-kit/ndk-react-starter -- yarn build"
},
"devDependencies": {
"@types/node": "18.6.1",
"@types/react": "18.0.10",
"@types/react-dom": "18.0.5",
"eslint": "8.16.0",
"lerna": "5.3.0",
"typescript": "4.8.2"
},
"workspaces": [
"packages/*"
]
}