-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 807 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 807 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
{
"name": "vim-react-snippets",
"type": "module",
"version": "0.0.1",
"description": "Reusable Typescript, SCSS, and MDX vim snippets for LuaSnips and developing React apps.",
"repository": "git@github.com:mlaursen/vim-react-snippets.git",
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prepare": "husky",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"devDependencies": {
"@types/node": "^24.10.13",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"volta": {
"node": "24.13.1",
"pnpm": "10.30.1"
},
"lint-staged": {
"**/*.{ts,js,md,json}": [
"prettier --write"
]
}
}