-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "astro-starter",
"url-prefix": "/astro-starter",
"url-admin": "http://localhost:1234/astro-starter/admin/index.html/",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"editor": "node script/watch-pages.js",
"cms": "npx decap-server",
"build": "astro build",
"deploy": "npm run build && gh-pages -d dist",
"preview": "npm run build && astro preview",
"prettier": "npx prettier --write \"**/*.{astro,js,ts,css,md,json}\"",
"reset": "rm -rf node_modules && npm i",
"list-files": "node ./script/list-files.js"
},
"lint-staged": {
"*.{astro,js,ts,css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@tailwindcss/vite": "4.2.0",
"astro": "6.1.6",
"chokidar": "5.0.0",
"cross-env": "10.1.0",
"dotenv": "17.4.0",
"gh-pages": "6.3.0",
"glob": "13.0.6",
"gray-matter": "4.0.3",
"gsap": "3.14.2",
"lint-staged": "16.4.0",
"marked": "17.0.5",
"matter": "0.2.0",
"prettier": "3.8.3",
"sharp": "0.34.5",
"tailwindcss": "4.2.0",
"ua-parser-js": "2.0.9"
}
}