2022-12-06 09:41:54 -05:00
|
|
|
{
|
2022-12-15 13:44:49 -05:00
|
|
|
"name": "static-cms",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2023-01-17 09:45:10 -05:00
|
|
|
"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",
|
2024-01-03 15:14:09 -05:00
|
|
|
"contributors:add": "all-contributors add",
|
|
|
|
"contributors:generate": "all-contributors generate",
|
2023-01-17 09:45:10 -05:00
|
|
|
"demo": "lerna run dev --scope @staticcms/demo",
|
2024-01-03 15:14:09 -05:00
|
|
|
"dev": "lerna run dev --scope @staticcms/core",
|
2023-01-28 09:05:30 -05:00
|
|
|
"docs": "lerna run dev --scope @staticcms/docs",
|
2024-01-03 15:14:09 -05:00
|
|
|
"format:prettier": "prettier \"cypress/**/*.{js,jsx,ts,tsx,css}\" --write",
|
|
|
|
"format": "lerna run format && yarn format:prettier",
|
|
|
|
"lint:format": "prettier \"cypress/**/*.{js,jsx,ts,tsx,css}\" --list-different",
|
|
|
|
"lint": "lerna run lint && yarn lint:format",
|
2022-12-15 13:44:49 -05:00
|
|
|
"prepare": "husky install",
|
2022-12-22 12:18:53 -05:00
|
|
|
"release": "lerna publish --no-private",
|
2023-04-20 13:15:14 -04:00
|
|
|
"release-dev": "lerna publish --no-private --no-push --no-git-tag-version --dist-tag dev",
|
2023-04-04 16:12:06 -04:00
|
|
|
"release-next": "lerna publish --no-private --dist-tag next",
|
2024-01-03 15:14:09 -05:00
|
|
|
"sync-locales": "lerna run sync-locales --scope @staticcms/tools",
|
|
|
|
"test": "lerna run test",
|
2022-12-15 13:44:49 -05:00
|
|
|
"test:ci": "lerna run test:ci",
|
2024-01-03 15:14:09 -05:00
|
|
|
"test:e2e": "cypress run --browser chrome --headed",
|
|
|
|
"test:e2e:headless": "cypress run --browser chrome --headless",
|
2022-12-15 13:44:49 -05:00
|
|
|
"test:integration:ci": "lerna run test:integration:ci",
|
|
|
|
"test:integration": "lerna run test:integration",
|
2023-01-25 15:11:59 -05:00
|
|
|
"type-check": "lerna run type-check --scope @staticcms/core"
|
2022-12-15 13:44:49 -05:00
|
|
|
},
|
2022-12-06 09:41:54 -05:00
|
|
|
"devDependencies": {
|
2024-01-03 15:14:09 -05:00
|
|
|
"@simonsmith/cypress-image-snapshot": "9.0.1",
|
|
|
|
"@types/mocha": "10.0.3",
|
|
|
|
"all-contributors-cli": "6.26.1",
|
|
|
|
"cypress-plugin-tab": "1.0.5",
|
|
|
|
"cypress-real-events": "1.11.0",
|
|
|
|
"cypress": "13.4.0",
|
|
|
|
"execa": "5.1.1",
|
2023-01-03 11:41:01 -05:00
|
|
|
"husky": "8.0.3",
|
2024-01-03 15:14:09 -05:00
|
|
|
"lerna": "7.3.0",
|
|
|
|
"lint-staged": "14.0.1",
|
|
|
|
"react-dom": "18.2.0",
|
2022-12-15 13:44:49 -05:00
|
|
|
"react": "18.2.0",
|
2024-01-03 15:14:09 -05:00
|
|
|
"rehype": "13.0.1",
|
|
|
|
"unist-util-visit": "4.1.2"
|
2022-12-06 09:41:54 -05:00
|
|
|
},
|
2022-12-15 13:44:49 -05:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
2024-01-02 12:29:54 -05:00
|
|
|
],
|
|
|
|
"dependencies": {}
|
2022-12-06 09:41:54 -05:00
|
|
|
}
|