-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
40
41
42
{
"name": "website",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check && prettier --check . && eslint .",
"check:astro": "astro check",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . && eslint . --fix"
},
"dependencies": {
"astro": "^4.16.18",
"posthog-js": "^1.63.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/ts-plugin": "^1.0.7",
"@fontsource/ibm-plex-mono": "^5.0.2",
"@types/eslint": "^8.40.0",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-astro": "^0.27.1",
"eslint-plugin-prettier": "^4.2.1",
"modern-normalize": "^2.0.0",
"postcss-preset-env": "^8.4.1",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"typescript": "^5.1.3"
},
"volta": {
"node": "22.12.0"
}
}