-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "@typeb/composition-workspace",
"version": "0.0.0",
"description": "Pre-formatted typebox validation for most modern javascript framework/library",
"main": "index.js",
"author": "Michael Lazuardy",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/mlazuardy/typebox-composition"
},
"scripts": {
"dev": "nx run-many --target=dev --no-cloud",
"build": "nx run-many --target=build --exclude=docs --no-cloud",
"build:clean": "nx run-many --target=build:clean --exclude=docs --no-cloud",
"format": "prettier packages/**/*.ts --ignore-path ./.prettierignore --write",
"format:app": "prettier apps/**/*.{ts,tsx,js} --ignore-path ./.prettierignore --write",
"test": "nx run-many --target=test --output-style=stream --no-cloud",
"publish:composition": "pnpm --filter \"@typeb/composition\" publish",
"publish:hook-form": "pnpm --filter \"@typeb/hook-form\" publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"nx": "^19.0.1",
"nx-cloud": "^18.0.1",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
}
}