-
Notifications
You must be signed in to change notification settings - Fork 221
/
package.json
62 lines (62 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "kings-league",
"version": "1.0.1",
"description": "Kings League Infojobs Project with API & Web",
"main": "index.js",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro build",
"dev:api": "wrangler dev api/index.js",
"dev": "astro dev",
"preview": "astro preview",
"publish:api": "wrangler publish api/index.js",
"scrape": "node --no-warnings scraping/index.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:cov": "vitest run --coverage",
"start": "astro dev",
"lint": "eslint . --ext .js,.astro,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@astrojs/prefetch": "0.1.1",
"@astrojs/tailwind": "2.1.3",
"astro": "1.9.1",
"cheerio": "1.0.0-rc.12",
"hono": "2.7.1",
"html-to-image": "1.11.4",
"husky": "8.0.3",
"picocolors": "1.0.0",
"tailwindcss": "3.2.4"
},
"devDependencies": {
"@astrojs/sitemap": "1.0.0",
"@typescript-eslint/parser": "5.48.0",
"@vitest/coverage-c8": "0.26.3",
"@vitest/ui": "0.26.3",
"astro-critters": "1.1.25",
"eslint": "8.31.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-astro": "0.21.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.6.0",
"eslint-plugin-promise": "6.1.1",
"prettier": "2.8.1",
"prettier-plugin-astro": "0.7.2",
"sharp": "0.31.3",
"vite": "4.0.4",
"vitest": "0.26.3",
"wrangler": "2.6.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint:fix",
"pre-push": "npm test"
}
}
}