-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "debbiebarr.com",
"version": "1.0.0",
"description": "Debbie Barr's Website",
"homepage": "https://debbiebarr.com",
"private": true,
"author": "Chris Barr",
"license": "none",
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisMBarr/debbiebarr.com.git"
},
"scripts": {
"start": "npx @11ty/eleventy --serve",
"build": "npm run clean && npx @11ty/eleventy",
"build:gh-pages": "npx @11ty/eleventy",
"clean": "npx rimraf _site",
"lint": "npm-run-all -s -c lint:scss lint:js",
"lint:js": "npx eslint --fix",
"lint:scss": "npx stylelint \"**/*.scss\" --fix",
"update": "ncu -u && npm i"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@eslint/js": "^9.12.0",
"bootstrap": "^5.3.3",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-plugin-prettier": "^5.2.1",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.4",
"prettier": "3.3.3",
"sass": "^1.79.4",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.2"
}
}