-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.46 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
57
58
59
60
{
"name": "wwebdev",
"version": "2.0.0",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "yarn@4.17.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"astro": "astro",
"serve": "node server.mjs",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/prism": "^4.0.2",
"@astrojs/react": "6.0.1",
"@fontsource/lato": "^5.2.7",
"astro": "7.0.9",
"compression": "^1.8.1",
"express": "^5.2.1",
"feed": "^5.2.1",
"prismjs": "^1.30.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@tailwindcss/vite": "^4.3.2",
"@types/compression": "^1",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/express": "^5.0.6",
"@types/node": "^26.0.1",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^10.6.0",
"eslint-plugin-astro": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.9.4",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
},
"dependenciesMeta": {
"esbuild": {
"built": true
},
"sharp": {
"built": true
}
}
}