-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
{
"name": "flightdeck-for-eleventy-and-parcel",
"version": "0.3.0",
"description": "An opinionated Jamstack starter project for Eleventy with ParcelJS.",
"author": "Ed Heltzel",
"license": "WTFPL",
"browserslist": "> 0.5%, last 2 versions, not dead",
"source": [
"src/assets/js/app.js",
"src/assets/styles/style.scss"
],
"targets": {
"default": {
"distDir": "dist/assets",
"sourceMap": false
},
"images": {
"distDir": "dist/assets/images",
"sourceMap": false
}
},
"scripts": {
"start": "pnpm run build:images && pnpm run dev:11ty & pnpm run dev:parcel",
"dev:11ty": "eleventy --serve --incremental",
"dev:parcel": "parcel watch --no-cache --no-hmr",
"build": "pnpm run clean && pnpm run build:parcel && pnpm run build:images && pnpm run build:11ty",
"build:11ty": "cross-env ENV=production eleventy",
"build:parcel": "parcel build --no-cache",
"build:images": "parcel build 'src/assets/images/**/*.*' --target images",
"clean": "./.scrub.sh site",
"purge": "./.scrub.sh purge",
"upgrade": "pnpx npm-check-updates -ui"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@biomejs/biome": "^1.9.3",
"@parcel/config-default": "^2.12.0",
"@parcel/core": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"browserlist": "^1.0.1",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"eleventy-plugin-embed-everything": "^1.19.0",
"html-minifier": "^4.0.0",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-attrs": "^4.2.0",
"parcel": "^2.12.0",
"sass": "^1.79.4",
"sharp": "^0.31.1"
},
"dependencies": {
"@alpinejs/persist": "^3.14.1",
"alpinejs": "^3.14.1"
},
"trustedDependencies": [
"@biomejs/biome",
"@swc/core",
"sharp"
],
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}