-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 971 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 971 Bytes
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": "matepapp.com",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "astro build",
"deploy": "wrangler deploy",
"dev": "astro dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "astro preview",
"typecheck": "astro check"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.6"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/ts-plugin": "^1.10.7",
"@eslint/js": "^10.0.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"eslint-plugin-astro": "^1.6.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"wrangler": "^4.76.0"
},
"engines": {
"node": "24.x"
}
}