-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.72 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
67
68
{
"name": "lekoarts-stats",
"type": "module",
"version": "1.0.0",
"packageManager": "[email protected]",
"author": "LekoArts",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"db:insert": "tsx scripts/db-insert.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@astrojs/react": "^4.1.1",
"@fontsource/ibm-plex-mono": "^5.1.0",
"@libsql/client": "^0.14.0",
"@nivo/core": "^0.88.0",
"@nivo/line": "^0.88.0",
"@vanilla-extract/css": "^1.16.1",
"@vanilla-extract/sprinkles": "^1.6.3",
"@vanilla-extract/vite-plugin": "^4.0.18",
"astro": "^5.0.9",
"astro-themes": "^0.2.5",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.36.4",
"ky": "^1.7.4",
"lodash-es": "^4.17.21",
"masto": "^6.10.1",
"polished": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@eslint-react/eslint-plugin": "^1.20.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"astro-eslint-parser": "^1.1.0",
"drizzle-kit": "^0.28.1",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^0.1.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"vite": "^6.0.2"
}
}
}