forked from midudev/miduconf-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.18 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
{
"name": "miduconf",
"version": "0.5.0",
"private": true,
"engines": {
"node": "14.x"
},
"scripts": {
"phoenix": "rm -f package-lock.json && rm -rf ./node_modules && npm install --no-fund --no-audit --no-package-lock --legacy-peer-deps",
"phoenix-win": "del /s /q package-lock.json && echo 'Borrando node_modules...' && rmdir /s /q node_modules && cls && echo 'Instalando Dependencias' && npm install --no-fund --no-audit --no-package-lock --legacy-peer-deps",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier -w .",
"lint:eslint": "eslint . --ext .js,.astro"
},
"devDependencies": {
"@astrojs/preact": "0.5.2",
"@astrojs/tailwind": "0.2.5",
"@typescript-eslint/parser": "5.31.0",
"astro": "1.0.0-rc.3",
"eslint": "8.20.0",
"eslint-plugin-astro": "0.16.0",
"prettier": "2.7.1",
"prettier-plugin-astro": "0.2.0",
"tailwindcss": "3.1.7"
},
"dependencies": {
"@netlify/functions": "1.0.0",
"@supabase/supabase-js": "1.35.4",
"atropos": "1.0.2",
"chrome-aws-lambda": "10.1.0",
"preact": "10.10.0",
"puppeteer-core": "15.5.0"
}
}