astro/package.json

38 lines
921 B
JSON
Raw Normal View History

2021-03-15 17:22:05 +00:00
{
"name": "root",
"private": true,
2021-03-15 17:22:05 +00:00
"scripts": {
"release": "yarn build && yarn changeset publish",
"build": "yarn build:core",
"build:core": "lerna run build --scope astro --scope astro-parser --scope create-astro",
"test": "yarn test:core && yarn test:prettier",
"test:core": "cd packages/astro && npm test",
"test:prettier": "cd tools/prettier-plugin-astro && npm test",
"format": "prettier -w '**/*.{js,jsx,ts,tsx,md,json}'"
2021-03-15 17:22:05 +00:00
},
"workspaces": [
"packages/*",
"examples/*",
"tools/*",
"scripts",
"www"
],
"volta": {
"node": "14.16.1",
"npm": "7.11.2",
"yarn": "1.22.10"
2021-03-15 17:22:05 +00:00
},
"devDependencies": {
"cheerio": "^1.0.0-rc.5",
"cheerio-select-tmp": "^0.1.1",
2021-04-23 16:44:41 +00:00
"del": "^6.0.0",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"typescript": "^4.2.4",
"uvu": "^0.5.1"
},
"dependencies": {
"@changesets/cli": "^2.16.0"
2021-04-14 00:08:32 +00:00
}
2021-03-15 17:22:05 +00:00
}