-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"private": true,
"name": "spaceholder.cc",
"homepage": "https://github.com/jgarber623/spaceholder.cc",
"bugs": "https://github.com/jgarber623/spaceholder.cc/issues",
"license": "MIT",
"author": {
"name": "Jason Garber",
"email": "[email protected]",
"url": "https://sixtwothree.org"
},
"type": "module",
"repository": "https://github.com/jgarber623/spaceholder.cc",
"scripts": {
"build": "npx @11ty/eleventy --quiet",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "npx stylelint ./src/**/*.css",
"lint:js": "npx eslint .",
"pretest": "npm run build",
"prewrangle": "npm run build",
"start": "npm run build -- --serve",
"test": "test -f ./_site/index.html",
"wrangle": "npx wrangler pages dev _site --compatibility-date=2024-03-04 --compatibility-flags=nodejs_compat"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"@jgarber/eleventy-plugin-postcss": "^1.0.1",
"@jgarber/eslint-config": "^7.0.0",
"@jgarber/stylelint-config": "^5.0.0",
"cssnano": "^7.0.6",
"postcss-nesting": "^13.0.1",
"wrangler": "^3.99.0"
},
"engines": {
"node": ">=22"
}
}