-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "portfolio-11ty",
"version": "1.0.0",
"description": "Portfolio of Adilson Santos using 11ty",
"main": ".eleventy.js",
"type": "module",
"scripts": {
"stylelint": "stylelint \"src/**/*.scss\" --ignore-path .gitignore",
"eslint": "eslint \"**/*.js\" --ignore-path .gitignore",
"stylelint-scss-check": "stylelint-config-prettier-scss-check",
"prod": "npx @11ty/eleventy --incremental --quiet",
"dev": "npx @11ty/eleventy --incremental --serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adilsonfsantos/Portfolio-11ty.git"
},
"author": "Adilson Santos",
"keywords": [
"11ty",
"Eleventy"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/adilsonfsantos/Portfolio-11ty/issues"
},
"homepage": "https://github.com/adilsonfsantos/Portfolio-11ty#readme",
"browserslist": [
"defaults"
],
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11tyrocks/eleventy-plugin-sass-lightningcss": "^1.3.0",
"eleventy-xml-plugin": "^0.1.0",
"html-minifier-terser": "^7.2.0",
"markdown-it": "^14.1.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-link-attributes": "^4.0.1",
"require-dir": "^1.2.0",
"sass": "^1.79.4",
"slugify": "^1.6.6"
},
"devDependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.3.3",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.7.0"
}
}