-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
63
64
65
66
{
"name": "formula1-app",
"version": "1.0.0",
"description": "An app for Formula 1 world Championship related statistics",
"type": "module",
"private": true,
"author": "Vivek Kumar Bansal <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint '{src,tools}/**/*.{ts,tsx,astro}'",
"check": "astro check && tsc --noEmit",
"dev": "astro dev",
"start": "astro dev",
"data:gen": "bun ./tools/generate-data.ts --allQueries",
"data:up": "bun ./tools/update-data.ts",
"prebuild": "rm -rf dist && rm -rf .netlify",
"build": "NODE_ENV=production astro build",
"fmt": "prettier --plugin-search-dir=. --write 'src/**/*.{ts,tsx,astro}'",
"fmtc": "prettier --plugin-search-dir=. --check 'src/**/*.{ts,tsx,astro}'"
},
"dependencies": {
"@astrojs/preact": "^4.0.0",
"@astrojs/vercel": "^8.0.1",
"astro": "^5.0.9",
"change-case": "^5.4.4",
"dayjs": "^1.11.13",
"normalize.css": "^8.0.1",
"preact": "^10.25.2",
"sass": "^1.83.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@cspell/eslint-plugin": "^8.17.1",
"@eslint/js": "^9.17.0",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.10.2",
"@types/papaparse": "^5.3.15",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"cheerio": "1.0.0",
"cli-progress": "^3.12.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fast-json-stable-stringify": "^2.1.0",
"globals": "^15.13.0",
"just-omit": "^2.2.0",
"just-safe-get": "^4.2.0",
"meow": "^13.2.0",
"papaparse": "^5.4.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prompts": "^2.4.2",
"typescript": "^5.1.3",
"typescript-eslint": "^8.18.1",
"zx": "^8.2.4"
},
"pnpm": {
"overrides": {
"zod": "3.22.4"
}
}
}