forked from The-Ghost-Network/Ghost-Astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 839 Bytes
/
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
{
"name": "ghost-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "node run-server.js",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^8.3.4",
"@tomphttp/bare-server-node": "^2.0.2",
"astro": "^4.16.8",
"astro-particles": "^2.10.0",
"express": "^4.21.1",
"http": "^0.0.1-security",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.8.1",
"typescript": "^5.6.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/node": "^22.9.0"
}
}