2021-03-15 17:22:05 +00:00
|
|
|
{
|
2021-04-30 21:33:35 +00:00
|
|
|
"name": "root",
|
2021-05-05 17:44:31 +00:00
|
|
|
"version": "0.0.0",
|
2021-04-30 21:33:35 +00:00
|
|
|
"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",
|
2021-05-28 22:51:50 +00:00
|
|
|
"benchmark": "yarn workspace astro run benchmark",
|
2021-04-30 21:33:35 +00:00
|
|
|
"build": "yarn build:core",
|
2021-06-08 15:10:56 +00:00
|
|
|
"build:all": "lerna run build",
|
|
|
|
"build:one": "lerna run build --scope",
|
2021-06-10 16:30:48 +00:00
|
|
|
"build:core": "lerna run build --scope astro --scope @astrojs/parser --scope @astrojs/markdown-support --scope create-astro",
|
2021-06-07 20:05:13 +00:00
|
|
|
"build:vscode": "lerna run build --scope astro-languageserver --scope astro-vscode --scope @astrojs/parser",
|
|
|
|
"dev:vscode": "lerna run dev --scope astro-languageserver --scope astro-vscode --scope @astrojs/parser --parallel --stream",
|
2021-05-17 22:52:11 +00:00
|
|
|
"format": "prettier -w \"**/*.{js,jsx,ts,tsx,md,json}\"",
|
|
|
|
"lint": "eslint \"packages/**/*.ts\"",
|
2021-05-26 23:52:53 +00:00
|
|
|
"test": "lerna run test --scope astro --stream",
|
2021-06-11 21:07:30 +00:00
|
|
|
"test:core": "yarn workspace astro run test",
|
|
|
|
"test:templates": "lerna run test --scope create-astro --stream"
|
2021-03-15 17:22:05 +00:00
|
|
|
},
|
2021-04-30 21:33:35 +00:00
|
|
|
"workspaces": [
|
2021-05-26 18:30:22 +00:00
|
|
|
"packages/renderers/*",
|
2021-06-08 15:10:56 +00:00
|
|
|
"packages/*",
|
2021-04-30 21:33:35 +00:00
|
|
|
"examples/*",
|
|
|
|
"tools/*",
|
|
|
|
"scripts",
|
2021-06-11 20:33:36 +00:00
|
|
|
"www",
|
|
|
|
"docs-www"
|
2021-04-30 21:33:35 +00:00
|
|
|
],
|
|
|
|
"volta": {
|
|
|
|
"node": "14.16.1",
|
|
|
|
"npm": "7.11.2",
|
|
|
|
"yarn": "1.22.10"
|
2021-03-15 17:22:05 +00:00
|
|
|
},
|
2021-05-12 18:06:16 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@changesets/cli": "^2.16.0"
|
|
|
|
},
|
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-05-06 16:38:53 +00:00
|
|
|
"cheerio": "^1.0.0-rc.6",
|
2021-04-30 21:33:35 +00:00
|
|
|
"cheerio-select-tmp": "^0.1.1",
|
2021-04-23 16:44:41 +00:00
|
|
|
"del": "^6.0.0",
|
2021-05-06 16:38:53 +00:00
|
|
|
"esbuild": "^0.11.17",
|
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 18:18:08 +00:00
|
|
|
"svelte": "^3.38.0",
|
2021-05-06 16:38:53 +00:00
|
|
|
"tiny-glob": "^0.2.8",
|
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-06-11 13:03:06 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2021-06-11 20:29:31 +00:00
|
|
|
"node": ">=14.15.1"
|
2021-04-14 00:08:32 +00:00
|
|
|
}
|
2021-06-11 20:34:45 +00:00
|
|
|
}
|