forked from cerc-io/snowballtools-base
Bump node v in docs workflow fix(docs): treat warnings as errors false fix(docs)Correct docs pattern in gitignore Add target branch to docs build fix(docs)Correct docs pattern in gitignore Add target branch to docs build Add target branch to docs build
35 lines
1.2 KiB
JSON
35 lines
1.2 KiB
JSON
{
|
|
"name": "snowball-tools",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"devDependencies": {
|
|
"@microsoft/tsdoc": "^0.15.1",
|
|
"chalk": "^4.1.2",
|
|
"concurrently": "^8.2.0",
|
|
"depcheck": "^1.4.2",
|
|
"husky": "^8.0.3",
|
|
"lerna": "^8.2.0",
|
|
"patch-package": "^8.0.0",
|
|
"rimraf": "^6.0.1",
|
|
"tsdoc": "^0.0.4",
|
|
"typedoc": "^0.27.9",
|
|
"typedoc-plugin-markdown": "^4.4.2",
|
|
"typedoc-unhoax-theme": "^0.4.6"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"build": "lerna run build --stream",
|
|
"lint": "lerna run lint --stream",
|
|
"start": "yarn kill:ports && yarn dev",
|
|
"dev": "yarn && yarn build --ignore frontend && concurrently --names \"BACKEND,FRONTEND\" --prefix-colors \"blue.bold,green.bold\" --prefix \"[{name}]\" \"yarn start:backend\" \"yarn start:frontend\"",
|
|
"start:backend": "yarn workspace backend start",
|
|
"start:frontend": "yarn workspace frontend dev",
|
|
"kill:ports": "node scripts/kill-ports.js",
|
|
"docs": "yarn typedoc",
|
|
"docs:watch": "yarn typedoc --watch"
|
|
},
|
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
}
|