forked from QwikDev/astro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.4 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.4 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
{
"name": "@qwikdev/astro-deno-eslint-prettier-starter",
"type": "module",
"private": true,
"scripts": {
"astro": "astro",
"sync": "astro sync",
"build": "npm run fix && astro build",
"check": "npm run check.fmt && npm run check.lint && astro check",
"check.fmt": "prettier --check .",
"check.lint": "eslint \"**/*.{js,jsx,ts,tsx,astro}\"",
"deploy": "deployctl deploy --project=qwik-astro --no-static --include=./dist ./dist/server/entry.mjs",
"dev": "astro dev",
"fix": "npm run lint && npm run fmt",
"fmt": "prettier --write .",
"lint": "eslint --fix \"**/*.{js,jsx,ts,tsx,astro}\"",
"lint.dry-run": "eslint --fix-dry-run \"**/*.{js,jsx,ts,tsx,astro}\"",
"preview": "npm run build && npm run serve",
"prod": "npm run check && astro build",
"serve": "deno run -A --unstable ./dist/server/entry.mjs",
"start": "astro dev --open"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@builder.io/qwik": "^1.14.1",
"@deno/astro-adapter": "^0.3.1",
"@qwikdev/astro": "^0.8",
"astro": "^5.8.0"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-qwik": "^1.5.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0"
}
}