-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 KB
/
package.json
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
39
{
"name": "@bbcmonticello/site",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"astro": "astro",
"build": "run-p build:*",
"build:astro": "astro build",
"dev": "run-p dev:*",
"dev:astro": "astro dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "eslint . --fix",
"preview": "astro preview",
"start": "$npm_execpath run dev",
"typecheck": "tsc -b",
"validate": "run-p lint typecheck"
},
"dependencies": {
"@astrojs/mdx": "^3.1.3",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@tailwindcss/typography": "^0.5.13",
"astro": "^4.13.1",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.7"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"npm-run-all": "^4.1.5",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}