-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.1 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
{
"name": "danebertram.com",
"version": "1.0.0",
"private": true,
"description": "",
"homepage": "https://github.com/dbertram/danebertram.com_v3#readme",
"license": "UNLICENSED",
"author": "Dane Bertram",
"repository": {
"type": "git",
"url": "git+https://github.com/dbertram/danebertram.com_v3.git"
},
"main": "index.js",
"scripts": {
"dev": "npm run start",
"start": "ELEVENTY_ENV=development eleventy --serve",
"build": "eleventy",
"clean": "rm -rf _site",
"checks": "npm run lint && npm run format:check && npm test && npm run build",
"rebuild": "npm run clean && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint eleventy.config.mjs src assets/scripts",
"lint:fix": "oxlint --fix eleventy.config.mjs src assets/scripts"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-vite": "^7.0.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"sass": "^1.97.3",
"vite": "^7.3.1",
"vitest": "^4.1.2"
}
}