-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "ross.ch",
"version": "2.0.0",
"description": "ross.ch website",
"private": true,
"type": "module",
"scripts": {
"build": "hugo --minify",
"lint": "eslint . && stylelint **/*.scss",
"format": "eslint --fix . && stylelint --fix **/*.scss",
"prepare": "husky",
"dev": "hugo --logLevel debug server",
"dev-host": "hugo --logLevel debug server --bind 0.0.0.0",
"test": "vitest",
"coverage": "vitest run --coverage",
"cf-deploy": "wrangler deploy",
"cf-dev": "wrangler pages dev",
"cf-typegen": "wrangler types functions/worker-configuration.d.ts"
},
"keywords": [],
"author": "Ross Chadwick",
"license": "GPL-3.0-only",
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.40",
"@cloudflare/workers-types": "^4.20241205.0",
"@eslint/js": "^9.14.0",
"@fontsource-variable/space-grotesk": "^5.1.0",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@openpgp/web-stream-tools": "^0.1.3",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"postcss-calc": "^10.0.2",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^10.1.2",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"resend": "^4.0.1",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.10.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.8",
"wrangler": "^3.83.0"
},
"dependencies": {
"axios": "^1.7.9",
"openpgp": "^6.0.1"
}
}