-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
33 lines (33 loc) · 929 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
28
29
30
31
32
33
{
"name": "trpc-panel",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"test:panel": "yarn && npx nx test --project trpc-panel",
"build:panel": "yarn && npx nx build --project trpc-panel",
"build:test-app": "yarn && npx nx build --project test-trpc-panel",
"build:docs": "yarn && npx nx build --project docs",
"cpy:readme": "cp README.MD packages/trpc-panel/README.md",
"start:test-app": "node ./packages/test-app/lib/server.js",
"start:docs": "cd packages/docs && yarn serve"
},
"private": true,
"devDependencies": {
"@nrwl/nx-cloud": "latest",
"@tsconfig/docusaurus": "^1.0.6",
"nx": "15.2.4",
"prettier": "^2.6.2",
"typescript": "^4.9.3"
},
"workspaces": {
"packages": [
"packages/trpc-panel",
"packages/test-app",
"packages/dev-app"
],
"nohoist": [
"**/zod-to-json-schema",
"**/zod-to-json-schema/**"
]
}
}