summaryrefslogtreecommitdiff
path: root/examples/snowpack/package.json
blob: faa81587c388e7a8adf0303044353abab505c4f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  "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",
    "lint": "prettier --check \"src/**/*.js\""
  },
  "dependencies": {
    "astro": "^0.13.4",
    "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.13.4",
    "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"
  },
  "snowpack": {
    "workspaceRoot": "../.."
  }
}