-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 935 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·36 lines (36 loc) · 935 Bytes
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": "entmoot-io",
"version": "1.0.0",
"description": "Personal website for entmoot.io",
"main": "build.js",
"scripts": {
"build": "node build.js",
"lint": "eslint . --fix",
"format": "prettier --write .",
"lint:css": "stylelint 'css/**/*.css' --fix",
"validate": "npm run lint && npm run format && npm run lint:css && npm run security && npm run build",
"security": "gitleaks detect --config .gitleaks.toml --verbose",
"prepare": "husky install"
},
"dependencies": {
"marked": "^12.0.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"eslint": "^8.57.0",
"@eslint/js": "^8.57.0",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"keywords": [
"personal",
"website",
"blog",
"markdown"
],
"author": "Tony Cardillo",
"license": "MIT"
}