-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "cyan-centauri",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "dprint fmt",
"lint": "eslint . --ext .ts,.tsx",
"scrap": "ts-node --esm src/lib/scraping.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "^3.1.8",
"@astrojs/sitemap": "^3.2.1",
"@types/chart.js": "^2.9.41",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"astro": "^4.15.11",
"axios": "^1.7.7",
"chart.js": "^4.4.5",
"cheerio": "^1.0.0",
"dprint": "^0.48.0",
"fs": "^0.0.1-security",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.13.0",
"typescript": "^5.6.2",
"xmldom": "^0.6.0",
"xpath": "^0.0.34"
},
"devDependencies": {
"@astrojs/react": "^3.6.2",
"@eslint/js": "^9.12.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.9.0"
}
}