-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "kings-league",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"astro": "astro",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"scrape": "node scrapping/index.js",
"dev:api": "wrangler dev api/index.js",
"publish:api": "wrangler publish api/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@astrojs/preact": "^2.0.2",
"@astrojs/tailwind": "3.0.1",
"astro": "2.0.10",
"cheerio": "1.0.0-rc.12",
"hono": "2.7.1",
"node-fetch": "3.3.0",
"picocolors": "1.0.0",
"preact": "^10.6.5",
"tailwindcss": "3.2.4"
},
"devDependencies": {
"@typescript-eslint/parser": "5.48.1",
"eslint": "8.31.0",
"eslint-plugin-astro": "0.21.1",
"prettier": "2.8.2",
"prettier-plugin-astro": "0.7.2",
"standard": "17.0.0",
"vitest": "0.26.3",
"wrangler": "2.6.2"
}
}