-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 876 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 876 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
37
{
"name": "@cewald/website",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"prepare": "husky && nuxi prepare",
"build": "nuxt build",
"dev": "nuxt dev --no-fork",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "npm run prepare",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "npx nuxi typecheck"
},
"devDependencies": {
"@cewald/nuxt-boilerplate-layer": "^6.1.20",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@vueuse/core": "^14.3.0",
"gsap": "^3.15.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"nuxt": "^4.5.2",
"vue": "^3.5.33",
"vue-router": "^5.0.6"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown",
"npm run lint:fix"
]
}
}