-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.1 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
{
"name": "akselinurmio.fi",
"private": true,
"type": "module",
"scripts": {
"build": "node build.js",
"dev": "wrangler pages dev --proxy 1234 -- npm run dev:frontend",
"dev:frontend": "parcel frontend/{,en/}{index,404}.html",
"prettier:check": "prettier --check --ignore-path .gitignore .",
"prettier:fix": "prettier --write --ignore-path .gitignore .",
"test": "concurrently --group npm:build npm:prettier:check npm:type-check",
"type-check": "concurrently --group \"npm:type-check:*\"",
"type-check:frontend": "cd frontend && tsc --noEmit",
"type-check:functions": "cd functions && tsc --noEmit"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"@parcel/optimizer-svgo": "^2.13.3",
"@parcel/packager-raw-url": "^2.13.3",
"@parcel/transformer-jsonld": "^2.13.3",
"@parcel/transformer-webmanifest": "^2.13.3",
"concurrently": "^9.1.2",
"parcel": "^2.13.3",
"prettier": "^3.4.2",
"sharp": "^0.33.5",
"svgo": "^3.3.2",
"typescript": "^5.7.2",
"wrangler": "^3.99.0"
},
"browserslist": "> 0.5% in FI, not dead"
}