-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "@robbevp/website-robbevanpetegem",
"version": "1.0.0",
"description": "Personal website for Robbe Van Petegem",
"author": "Robbe Van Petegem <git@robbevp.be>",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "github.com/robbevp/website-robbevanpetegem"
},
"scripts": {
"build": "eleventy",
"dev": "eleventy --serve",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js -- --fix && npm run lint:css -- --fix",
"lint:js": "eslint .",
"lint:css": "stylelint **/*.css --ignore-path .gitignore"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@tree-company/eslint-config": "^0.4.3",
"@tree-company/stylelint-config": "^0.4.3",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"stylelint": "^16.11.0"
},
"stylelint": {
"extends": "@tree-company/stylelint-config"
}
}