mirror of
https://github.com/withastro/astro.git
synced 2025-01-13 22:11:20 -05:00
4df1347156
* chore: use monorepo * chore: scaffold astro-scripts * chore: move tests inside packages/astro * chore: refactor tests, add scripts * chore: move parser to own module * chore: move runtime to packages/astro * fix: move parser to own package * test: fix prettier-plugin-astro tests * fix: tests * chore: update package-lock * chore: add changesets * fix: cleanup examples * fix: starter example * chore: update changeset config * chore: update changeset config * chore: setup changeset release workflow * chore: bump lockfiles * chore: prism => astro-prism * fix: tsc --emitDeclarationOnly * chore: final cleanup, switch to yarn * chore: add lerna * chore: update workflows to yarn * chore: update workflows * chore: remove lint workflow * chore: add astro-dev script * chore: add symlinked README
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "@example/snowpack",
|
|
"private": true,
|
|
"version": "3.0.0",
|
|
"scripts": {
|
|
"start": "astro dev",
|
|
"build": "astro build",
|
|
"astro-dev": "nodemon --delay 0.5 -w ../../packages/astro/dist -x '../../packages/astro/astro.mjs dev'",
|
|
"test": "jest /__test__/",
|
|
"format": "prettier --write \"src/**/*.js\" && yarn format:css",
|
|
"format:css": "stylelint 'src/**/*.scss' --fix",
|
|
"lint": "prettier --check \"src/**/*.js\""
|
|
},
|
|
"dependencies": {
|
|
"astro": "0.0.9",
|
|
"date-fns": "^2.19.0",
|
|
"deepmerge": "^4.2.2",
|
|
"docsearch.js": "^2.6.3",
|
|
"htm": "^3.0.4",
|
|
"mdast-util-from-markdown": "^0.8.5",
|
|
"mdast-util-toc": "^5.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^0.11.0",
|
|
"@11ty/eleventy-plugin-rss": "^1.0.9",
|
|
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
|
|
"@contentful/rich-text-html-renderer": "^14.1.2",
|
|
"@contentful/rich-text-types": "^14.1.2",
|
|
"astro": "0.0.9",
|
|
"eleventy-plugin-nesting-toc": "^1.2.0",
|
|
"luxon": "^1.25.0",
|
|
"markdown-it": "^12.0.2",
|
|
"markdown-it-anchor": "^6.0.0",
|
|
"nodemon": "^2.0.7",
|
|
"stylelint": "^13.8.0",
|
|
"stylelint-config-prettier": "^8.0.2",
|
|
"stylelint-config-rational-order": "^0.1.2",
|
|
"stylelint-config-standard": "^20.0.0"
|
|
},
|
|
"snowpack": {
|
|
"workspaceRoot": "../.."
|
|
}
|
|
}
|