fix: package.json not pointing to crrect file

This commit is contained in:
Florian Bouillon 2023-06-14 02:32:34 +02:00
parent ff138ea960
commit 70d52c096d

View File

@ -1,24 +1,24 @@
{ {
"name": "paas", "name": "paas",
"type": "module", "type": "module",
"version": "0.0.1", "version": "0.0.1",
"scripts": { "scripts": {
"dev": "astro dev", "dev": "astro dev",
"start": "astro dev", "start": "node ./dist/server/entry.mjs",
"build": "astro build", "build": "astro build",
"preview": "astro preview", "preview": "astro preview",
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
"@astrojs/node": "^5.2.0", "@astrojs/node": "^5.2.0",
"@astrojs/tailwind": "^3.1.3", "@astrojs/tailwind": "^3.1.3",
"@dzeio/object-util": "^1.5.0", "@dzeio/object-util": "^1.5.0",
"@dzeio/url-manager": "^1.0.9", "@dzeio/url-manager": "^1.0.9",
"astro": "^2.6.4", "astro": "^2.6.4",
"mathjs": "^11.8.1", "mathjs": "^11.8.1",
"tailwindcss": "^3.3.2" "tailwindcss": "^3.3.2"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20.3.1" "@types/node": "^20.3.1"
} }
} }