-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 950 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 950 Bytes
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
{
"name": "lpbcol",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev:api": "wrangler dev",
"publish:api": "wrangler publish",
"format": "prettier --write .",
"scrape": "node --no-warnings scraping/leaderboard.js",
"scrape:final": "node --no-warnings scraping/final.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@astrojs/tailwind": "^2.1.3",
"astro": "^1.9.1",
"cheerio": "1.0.0-rc.12",
"hono": "2.7.2",
"simple-astro-seo": "0.1.3",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"prettier": "^2.8.2",
"standard": "17.0.0",
"vitest": "0.26.3",
"wrangler": "2.6.2"
},
"eslintConfig": {
"extends": "standard"
}
}