-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3 KB
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
81
82
83
84
85
{
"name": "esjs-dolar-api",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/enzonotario/esjs-dolar-api.git"
},
"author": "Enzo Notario <hi@enzonotario.me>",
"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",
"seed:ve": "node --experimental-loader esjs-loader scripts/seed-ve-db.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": "^6.4.1",
"@egoist/tailwindcss-icons": "^1.9.0",
"@es-js/vite-plugin-esjs": "0.1.0-alpha.13",
"@faker-js/faker": "^10.1.0",
"@fontsource/inter": "^5.2.8",
"@hono/vite-dev-server": "^0.23.0",
"@iconify-json/mdi": "^1.2.3",
"@intlify/unplugin-vue-i18n": "^11.0.1",
"@observablehq/plot": "^0.6.17",
"@resvg/resvg-js": "^2.6.2",
"@types/node": "^20.19.25",
"@vueuse/core": "^14.1.0",
"autoprefixer": "^10.4.22",
"axios": "^1.13.2",
"cheerio": "1.0.0-rc.12",
"collect.js": "^4.36.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"esjs-loader": "^0.0.1",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"genji-theme-vitepress": "^0.2.8",
"hono": "^4.10.7",
"iconv-lite": "^0.7.0",
"parse-decimal-number": "^1.0.0",
"pino": "^10.1.0",
"pino-axiom": "^1.0.432",
"pino-pretty": "^13.1.3",
"playwright": "^1.57.0",
"postcss": "^8.5.6",
"prettier": "3.0.3",
"prettier-plugin-esjs": "0.1.0-alpha.13",
"sitemap": "^9.0.0",
"tailwindcss": "^3.4.3",
"try-to-catch": "^3.0.1",
"tsx": "3.12.7",
"typescript": "^5.9.3",
"vercel": "^48.12.1",
"vite": "^7.2.6",
"vitepress": "^1.6.4",
"vitepress-openapi": "^0.1.16",
"vitest": "^3.2.4",
"vue": "^3.5.25",
"vue-i18n": "^11.2.2",
"x-satori": "0.1.5"
},
"dependencies": {
"better-sqlite3": "^12.5.0",
"dotenv": "^17.2.3"
},
"packageManager": "pnpm@10.24.0"
}