-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 KB
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
{
"name": "formula-fan-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"scrape": "node --no-warnings scraper/index.js",
"lint": "eslint . --ext .js,.astro,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/preact": "^3.1.0",
"@astrojs/tailwind": "^5.1.0",
"@fontsource/space-grotesk": "^5.0.16",
"astro": "^4.4.0",
"cheerio": "1.0.0-rc.12",
"hono": "3.12.6",
"husky": "8.0.3",
"node-fetch": "^3.3.2",
"picocolors": "1.0.0",
"preact": "^10.19.3"
},
"devDependencies": {
"@astrojs/sitemap": "3.0.5",
"@playwright/test": "^1.41.1",
"@types/node": "^20.11.5",
"@typescript-eslint/parser": "6.19.0",
"@vitest/coverage-c8": "0.33.0",
"@vitest/ui": "1.2.1",
"autoprefixer": "^10.4.17",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-astro": "0.31.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"postcss": "^8.4.35",
"prettier": "3.2.4",
"prettier-plugin-astro": "0.13.0",
"sharp": "0.33.2",
"tailwindcss": "^3.4.1",
"vite": "5.1.3",
"vitest": "1.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint:fix",
"pre-push": "npm test"
}
}
}