-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1007 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
{
"name": "@monorepo-app-tony/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "ultra -r build",
"build:dts": "ultra -r --build build:dts",
"clean": "ultra -r clean",
"format": "eslint --fix --ext .js,.json,.ts,.tsx --ignore-path .gitignore .",
"lerna:publish": "yarn build && lerna publish",
"lerna:publish:all": "yarn build && lerna publish --force-publish",
"lerna:publish:canary": "yarn build && lerna publish --canary",
"test": "yarn build && ultra -r test",
"typecheck": "tsc --noEmit",
"version": "yarn install && git stage yarn.lock"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@types/react": "^18.2.36",
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"eslint-config-tonyfromundefined": "^0.5.0",
"eslint-define-config": "^1.24.1",
"lerna": "4.0.0",
"react": "^18.2.0",
"typescript": "^5.2.2",
"ultra-runner": "^3.10.5"
},
"packageManager": "[email protected]"
}