-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 942 Bytes
/
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
{
"name": "not-cms",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"vite": "^6.0.5"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@tailwindcss/vite": "^4.0.0-beta.8",
"@vitejs/plugin-vue": "^5.2.1",
"lightgallery": "^2.8.2",
"prettier-plugin-jinja-template": "^2.0.0",
"tailwindcss": "^4.0.0-beta.8",
"vue": "^3.5.13"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.vue": [
"prettier --write"
],
"*.css": [
"prettier --write"
],
"*.py": [
"uv run ruff format",
"uv run ruff check --fix"
]
}
}