astro/examples/snowpack/package.json

28 lines
658 B
JSON
Raw Normal View History

{
"name": "@example/snowpack",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "jest /__test__/",
"format": "prettier --write \"src/**/*.js\" && yarn format:css",
"lint": "prettier --check \"src/**/*.js\""
},
"dependencies": {
"date-fns": "^2.19.0",
"deepmerge": "^4.2.2",
"docsearch.js": "^2.6.3",
2021-07-22 22:29:32 +00:00
"htm": "^3.0.4"
},
"devDependencies": {
"@contentful/rich-text-html-renderer": "^14.1.2",
"@contentful/rich-text-types": "^14.1.2",
"astro": "^0.20.5"
},
"snowpack": {
"workspaceRoot": "../.."
}
}