-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "curved-conjunction",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"sync": "astro sync",
"prepare": "husky install",
"lint": "npm run lint:ts && npm run lint:eslint",
"lint:ts": "tsc --noEmit",
"lint:eslint": "NODE_ENV=production eslint \"{**/*,*}.{ts,tsx,astro}\"",
"lint:fix": "npm run lint:eslint -- --fix && prettier --write **/*.md"
},
"dependencies": {
"@astrojs/sitemap": "3.0.3",
"@astrojs/solid-js": "3.0.2",
"@astrojs/tailwind": "5.0.2",
"@fontsource-variable/fira-code": "5.0.15",
"@tailwindcss/typography": "0.5.10",
"astro": "3.3.2",
"astro-expressive-code": "0.26.2",
"date-fns": "2.30.0",
"solid-js": "1.8.3",
"tailwindcss": "3.3.3"
},
"devDependencies": {
"@astrojs/ts-plugin": "1.2.0",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-astro": "0.29.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"prettier-plugin-astro": "0.12.0"
},
"lint-staged": {
"*.{mjs,cjs,ts,tsx,astro}": [
"eslint --fix",
"git add"
],
"*.{md,mdx}": [
"prettier --write",
"git add"
]
},
"volta": {
"node": "20.9.0"
}
}