2021-03-15 17:22:05 +00:00
|
|
|
{
|
2021-04-30 21:33:35 +00:00
|
|
|
"name": "root",
|
|
|
|
"private": true,
|
2021-03-15 17:22:05 +00:00
|
|
|
"scripts": {
|
2021-04-30 21:33:35 +00:00
|
|
|
"release": "yarn build && yarn changeset publish",
|
|
|
|
"build": "yarn build:core",
|
|
|
|
"build:core": "lerna run build --scope astro --scope astro-parser --scope create-astro",
|
2021-05-03 18:26:10 +00:00
|
|
|
"format": "prettier -w '**/*.{js,jsx,ts,tsx,md,json}'",
|
2021-05-03 17:47:51 +00:00
|
|
|
"lint": "eslint 'packages/**/*.ts'",
|
2021-04-30 21:33:35 +00:00
|
|
|
"test": "yarn test:core && yarn test:prettier",
|
|
|
|
"test:core": "cd packages/astro && npm test",
|
2021-05-03 18:26:10 +00:00
|
|
|
"test:prettier": "cd tools/prettier-plugin-astro && npm test"
|
2021-03-15 17:22:05 +00:00
|
|
|
},
|
2021-04-30 21:33:35 +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": {
|
2021-05-03 17:47:51 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.22.0",
|
|
|
|
"@typescript-eslint/parser": "^4.18.0",
|
2021-04-30 21:33:35 +00:00
|
|
|
"cheerio": "^1.0.0-rc.5",
|
|
|
|
"cheerio-select-tmp": "^0.1.1",
|
2021-04-23 16:44:41 +00:00
|
|
|
"del": "^6.0.0",
|
2021-05-03 17:47:51 +00:00
|
|
|
"eslint": "^7.25.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
|
|
"execa": "^5.0.0",
|
2021-04-30 21:33:35 +00:00
|
|
|
"lerna": "^4.0.0",
|
2021-03-16 18:37:45 +00:00
|
|
|
"prettier": "^2.2.1",
|
2021-05-03 17:47:51 +00:00
|
|
|
"tiny-glob": "^0.2.8",
|
2021-05-03 18:18:08 +00:00
|
|
|
"esbuild": "^0.11.17",
|
|
|
|
"svelte": "^3.38.0",
|
2021-04-30 21:33:35 +00:00
|
|
|
"typescript": "^4.2.4",
|
2021-05-03 18:18:08 +00:00
|
|
|
"uvu": "^0.5.1"
|
2021-04-13 17:03:26 +00:00
|
|
|
},
|
2021-04-30 21:33:35 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@changesets/cli": "^2.16.0"
|
2021-04-14 00:08:32 +00:00
|
|
|
}
|
2021-03-15 17:22:05 +00:00
|
|
|
}
|