-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
80 lines (80 loc) · 2.8 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "esjs-dolar-api",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/enzonotario/esjs-dolar-api.git"
},
"author": "Enzo Notario <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "pnpm run docs:build && pnpm run data:copy && pnpm run api:build",
"serve": "vite preview",
"api:build": "vite build --config vite.api.config.js --ssr --mode=production",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:i18n-extract": "npx vue-i18n-extract report --vueFiles './docs/.vitepress/**/*.?(js|vue|md)' --languageFiles './docs/.vitepress/theme/locales/*.?(json|yml|yaml)'",
"docs:gen": "node --experimental-loader esjs-loader scripts/generadores/generar.esjs",
"format": "prettier --write '**/*.esjs'",
"data:copy": "node --experimental-loader esjs-loader scripts/datos.esjs",
"cron:build": "vite build --config vite.config.js --ssr --mode=production",
"cron:run": "node ./dist/cron/index.js",
"cron:test": "vitest --config vite.config.js",
"cron:test:ui": "vitest --ui",
"cron:test:run": "vitest run",
"og:dev": "x-satori -t ./og/Template.vue -c og/config.esjs --dev",
"og:build": "x-satori -t ./og/Template.vue -c og/config.esjs -o image.svg",
"og:png": "node --experimental-loader esjs-loader og/gen-png.esjs"
},
"devDependencies": {
"@antfu/eslint-config": "^1.0.0-beta.27",
"@egoist/tailwindcss-icons": "^1.7.1",
"@es-js/vite-plugin-esjs": "0.1.0-alpha.13",
"@fontsource/inter": "^5.0.18",
"@hono/vite-dev-server": "^0.0.12",
"@iconify-json/mdi": "^1.1.63",
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@observablehq/plot": "^0.6.16",
"@resvg/resvg-js": "^2.4.1",
"@types/node": "^18.17.1",
"@vueuse/core": "^10.5.0",
"autoprefixer": "^10.4.19",
"axios": "^1.6.7",
"cheerio": "1.0.0-rc.12",
"collect.js": "^4.36.1",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"esjs-loader": "^0.0.1",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.25.2",
"genji-theme-vitepress": "^0.2.6",
"hono": "^3.9.0",
"iconv-lite": "^0.6.3",
"parse-decimal-number": "^1.0.0",
"pino": "^9.1.0",
"pino-axiom": "^1.0.169",
"pino-pretty": "^11.1.0",
"postcss": "^8.4.38",
"prettier": "3.0.3",
"prettier-plugin-esjs": "0.1.0-alpha.13",
"sitemap": "^7.1.1",
"tailwindcss": "^3.4.3",
"try-to-catch": "^3.0.1",
"tsx": "3.12.7",
"typescript": "^5.2.2",
"vercel": "^32.5.0",
"vite": "^4.4.9",
"vitepress": "^1.5.0",
"vitepress-openapi": "0.0.3-alpha.57",
"vitest": "^0.34.6",
"vue": "^3.3.4",
"vue-i18n": "^9.5.0",
"x-satori": "0.1.5"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}