-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.79 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.79 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "andrasat-web",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/andrasat/andrasat-com.git"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@nuxt/eslint": "^0.5.4",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/tailwindcss": "^6.12.1",
"@semantic-release/changelog": "^6.0.3",
"@types/node": "^20.16.2",
"ajv": "^8.17.1",
"eslint": "^9.9.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nuxt": "^3.21.1",
"semantic-release": "^22.0.12",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
},
"engines": {
"node": "18.x"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint"
},
"private": true,
"publishConfig": {
"access": "restricted"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"releases/*"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "docs/CHANGELOG.md",
"label": "Changelog"
}
]
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
]
]
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"semantic-release": "semantic-release"
},
"dependencies": {
"@nuxt/content": "^2.0.0",
"@tailwindcss/typography": "^0.5.19"
}
}