forked from gongfudev/new-astro-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
43
44
45
46
{
"name": "@gongfuio/new-astro-repo",
"description": "Starter project with Astro, Shoelace and Lit",
"author": "Gōng-fu I/O (https://github.com/gongfuio)",
"license": "Apache-2.0",
"type": "module",
"version": "1.0.0",
"scripts": {
"format": "prettier \"src/**/*.{astro,js,html,css}\" --write",
"lint": "eslint src --ext .js,.astro",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/vercel": "^5.2.0",
"@lit-labs/preact-signals": "^1.0.1",
"@shoelace-style/shoelace": "^2.12.0",
"astro": "^3.6.0",
"lit": "^3.1.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.1",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.1",
"vite-plugin-static-copy": "^1.0.0"
},
"publishConfig": {
"access": "restricted"
},
"homepage": "https://github.com/gongfuio/new-astro-repo#readme",
"bugs": {
"url": "https://github.com/gongfuio/new-astro-repo/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:gongfuio/new-astro-repo.git"
}
}