Files
cunningham/package.json
Nathan Vasse def859ee0b 👷(ci) put storybook build in a gh-pages sub folder
Our main goal doing this is to allow us to have multiple static build
standing next to each other on our gh-pages.
2024-02-14 15:47:44 +01:00

41 lines
939 B
JSON

{
"name": "cunningham",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"test-ci": "turbo run test-ci",
"lint": "turbo run lint",
"deploy": "turbo run deploy",
"format": "prettier --write \"**/*.{ts,tsx,md,json,cjs,js}\"",
"predeploy-ghpages": "./scripts/predeploy-ghpages",
"deploy-ghpages": "storybook-to-ghpages --existing-output-dir ./ghpages-output"
},
"devDependencies": {
"cross-env": "7.0.3",
"make-dir-cli": "3.1.0",
"prettier": "3.2.5",
"turbo": "1.12.3"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@changesets/cli": "2.27.1"
},
"packageManager": "yarn@1.22.21",
"resolutions": {
"@testing-library/dom": "9.3.4"
},
"volta": {
"node": "18.18.2",
"yarn": "1.22.21"
}
}