-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 772 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 772 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": "dande_dev",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"husky": "9.1.7",
"lint-staged": "16.1.4",
"markdownlint-cli": "0.45.0",
"prettier": "3.6.2",
"rehype-parse": "^9.0.1",
"rehype-prism-plus": "2.0.1",
"rehype-stringify": "^10.0.1",
"tailwindcss": "4.1.11",
"tw-animate-css": "^1.3.6",
"unified": "^11.0.5"
},
"lint-staged": {
"*.css": [
"prettier --write --cache"
],
"*.md": [
"markdownlint --fix",
"prettier --write --cache"
],
"*.rs": [
"leptosfmt",
"cargo fmt --"
]
}
}