-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "ghooey",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"ghooey:build": "bun build ./src/scripts/ghooey.ts --entry-naming [dir]/[name].[ext] --outdir ./public",
"ghooey:build:min": "bun build ./src/scripts/ghooey.ts --minify --entry-naming [dir]/[name].min.[ext] --outdir ./public",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write \"**/*.{ts,tsx,md,js,jsx,json,css,astro}\""
},
"dependencies": {
"@aave/contract-helpers": "^1.23.0",
"@aave/math-utils": "^1.23.0",
"@astrojs/check": "^0.4.1",
"@astrojs/starlight": "^0.16.0",
"@astrojs/tailwind": "^5.1.0",
"@bgd-labs/aave-address-book": "^2.17.0",
"@types/alpinejs": "^3.13.6",
"alpinejs": "^3.13.3",
"astro": "^4.2.1",
"bignumber.js": "^9.1.2",
"dayjs": "^1.11.10",
"ethers": "5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"viem": "2.0.0"
},
"devDependencies": {
"prettier": "^3.2.4",
"prettier-plugin-astro": "^0.12.3"
}
}