static-cms/package.json

35 lines
1.1 KiB
JSON
Raw Normal View History

2022-12-06 09:41:54 -05:00
{
"name": "static-cms",
"private": true,
"scripts": {
2023-02-07 14:48:56 -05:00
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"build": "lerna run build --scope @staticcms/core --scope @staticcms/app",
"build:demo": "lerna run build --scope @staticcms/demo",
2023-01-27 11:09:35 -05:00
"build:docs": "cd packages/docs && yarn build",
"dev": "lerna run dev --scope @staticcms/core",
"demo": "lerna run dev --scope @staticcms/demo",
2023-01-28 09:05:30 -05:00
"docs": "lerna run dev --scope @staticcms/docs",
"format": "lerna run format",
"lint": "lerna run lint",
"prepare": "husky install",
2022-12-22 12:18:53 -05:00
"release": "lerna publish --no-private",
"test:ci": "lerna run test:ci",
"test:integration:ci": "lerna run test:integration:ci",
"test:integration": "lerna run test:integration",
"test": "lerna run test",
"type-check": "lerna run type-check --scope @staticcms/core"
},
2022-12-06 09:41:54 -05:00
"devDependencies": {
2023-02-07 14:48:56 -05:00
"all-contributors-cli": "6.24.0",
"husky": "8.0.3",
"lerna": "6.5.1",
"lint-staged": "13.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
2022-12-06 09:41:54 -05:00
},
"workspaces": [
"packages/*"
]
2022-12-06 09:41:54 -05:00
}