-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "baytides-website",
"version": "1.0.0",
"type": "module",
"description": "Bay Tides nonprofit website",
"scripts": {
"dev": "astro dev",
"build": "npm run build:search && astro build",
"build:search": "node scripts/generate-search-index.js",
"build:css": "sass assets/scss/style.scss assets/css/style.css --style=compressed",
"build:worker": "cd workers/form-handler && wrangler deploy",
"build:all": "npm run build && npm run build:worker",
"preview": "astro preview",
"typecheck": "astro check && tsc --noEmit",
"typecheck:worker": "tsc --noEmit -p workers/form-handler/tsconfig.json",
"typecheck:all": "npm run typecheck && npm run typecheck:worker",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "npm run typecheck:all && npm run lint && npm run format:check",
"prepare": "husky",
"test": "NO_COLOR= FORCE_COLOR=0 playwright test",
"test:ui": "NO_COLOR= FORCE_COLOR=0 playwright test --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baytides/home.git"
},
"author": "Bay Tides",
"license": "ISC",
"bugs": {
"url": "https://github.com/baytides/home/issues"
},
"homepage": "https://baytides.org",
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@cloudflare/workers-types": "^4.20260219.0",
"@playwright/test": "^1.58.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.3",
"astro": "^5.17.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pdf-lib": "^1.17.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"sass": "^1.97.1",
"typescript": "^5.9.3",
"wrangler": "^4.61.1"
},
"lint-staged": {
"*.{js,ts,json,astro}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@astrojs/react": "^4.4.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"js-yaml": "^4.1.1",
"motion": "^12.31.0",
"phone": "^3.1.70",
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}