-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.34 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
56
57
58
{
"name": "zweimach.org",
"private": true,
"description": "Personal website and blog of Ananda Umamil",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"author": {
"email": "[email protected]",
"name": "Ananda Umamil"
},
"repository": {
"type": "git",
"url": "https://github.com/zweimach/zweimach.org"
},
"scripts": {
"dev": "eleventy --serve",
"build": "eleventy",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-vite": "^5.0.2",
"autoprefixer": "^10.4.20",
"htmlnano": "^2.1.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"simple-git-hooks": "^2.11.1"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,json,md,yml,yaml,html,css}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
}
}