-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.89 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.89 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
{
"name": "gastownhall",
"type": "module",
"version": "0.0.1",
"workspaces": [
"docs"
],
"scripts": {
"dev": "npm run copy-assets && npm run llms && astro dev",
"dev:docs": "npm run dev -w docs",
"build": "npm run copy-assets && npm run llms && astro check && astro build",
"build:docs": "npm run build -w docs",
"build:all": "npm run build && npm run build:docs",
"copy-assets": "node scripts/copy-assets.mjs",
"sync-docs": "node scripts/sync-gastown-docs.mjs",
"llms": "node scripts/generate-llms.mjs",
"preview": "astro preview",
"preview:docs": "npm run preview -w docs",
"deploy": "npm run build && wrangler pages deploy deploy --project-name=gastownhall-website",
"deploy:docs": "npm run build:docs && wrangler pages deploy deploy-docs --project-name=gastown-docs",
"astro": "astro",
"test": "node --test scripts/lib/__tests__/*.test.mjs docs/scripts/lib/__tests__/*.test.mjs",
"test:e2e": "playwright test",
"test:all": "npm run test && npm run test:e2e",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"audit:check": "npm audit --audit-level=info",
"check": "npm run lint && npm run format:check && npm run test && npm run build:all && npm run audit:check",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"astro": "^5.0.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.53.1",
"wrangler": "^4.80.0"
},
"overrides": {
"yaml": "^2.8.3"
}
}