-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "esjs-argentina-datos-api",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/enzonotario/esjs-argentina-datos-api.git"
},
"author": "Enzo Notario <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "vite build --ssr --mode=production",
"serve": "vite preview",
"test": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"cron": "node ./dist/index.js",
"api:dev": "vite --config vite.api.config.js --host",
"api:build": "vite build --config vite.api.config.js --ssr --mode=production",
"format": "prettier --write src"
},
"devDependencies": {
"@es-js/vite-plugin-esjs": "^0.1.0-beta.1",
"@hono/vite-dev-server": "^0.0.12",
"axios": "^1.6.7",
"cheerio": "1.0.0-rc.12",
"collect.js": "^4.36.1",
"date-fns": "^3.2.0",
"fs": "0.0.1-security",
"glob": "^10.3.10",
"hono": "^3.9.0",
"parse-decimal-number": "^1.0.0",
"path": "^0.12.7",
"prettier": "^3.1.1",
"prettier-plugin-esjs": "^0.1.0-beta.1",
"vite": "^5.0.0",
"vitest": "^1.1.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"endOfLine": "auto",
"plugins": [
"prettier-plugin-esjs"
]
}
}