-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
108 lines (108 loc) · 3.63 KB
/
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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "svg-music-logos",
"version": "0.0.0-development",
"description": "Music-related logos and symbols collection in SVG.",
"homepage": "https://svg-music-logos.tiagoporto.com/",
"type": "module",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Tiago Porto",
"url": "https://tiagoporto.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiagoporto/svg-music-logos.git"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"prepare": "husky",
"postinstall": "nuxt prepare && npm run prebuild",
"dev": "open http://localhost:3000 && concurrently -k \"gulp watch\" \"nuxt dev\"",
"prebuild": "gulp build",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lighthouse-badge": "lighthouse-badges --url https://svg-music-logos.tiagoporto.com/ --output-path docs --badge-style pagespeed",
"copy-svgs": "gulp copy-svgs",
"preupdate-readme": "npm run generate-data",
"update-readme": "gulp update-readme",
"generate-data": "gulp generate-data",
"generate-styles": "gulp generate-styles",
"checks": "npm run check-formatting && npm run check-docs && npm run typecheck && npm run lint && npm run lint:styles",
"check-docs": "remark --frail .",
"check-formatting": "prettier --check --ignore-unknown \"**/*\"",
"check-formatting:fix": "npm run check-formatting -- --write",
"typecheck": "vue-tsc",
"lint": "eslint . --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint:styles": "stylelint \"**/*.{scss,vue}\"",
"lint:styles:fix": "stylelint \"**/*.{scss,vue}\" --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"nuxt": "^3.11.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@dzangolab/vue-country-flag-icon": "^0.3.0",
"@emazzotta/lighthouse-badges": "github:sitdisch/lighthouse-badges",
"@nuxt/eslint": "^0.7.2",
"@nuxt/scripts": "^0.9.5",
"@nuxt/test-utils": "^3.15.1",
"@nuxtjs/google-fonts": "^3.2.0",
"@tiagoporto/dependabot-config": "^1.2.0",
"@tiagoporto/editor-config": "^1.3.0",
"@tiagoporto/prettier-config": "^1.2.0",
"@tiagoporto/remark-config": "^1.6.0",
"@types/throttle-debounce": "^5.0.2",
"@vite-pwa/nuxt": "^0.10.6",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.14",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/test-utils": "^2.4.6",
"change-case": "^5.4.4",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.32.0",
"gulp": "^5.0.0",
"gulp-changed": "^5.0.2",
"gulp-concat-json-to-array": "^0.0.1",
"gulp-replace": "^1.1.4",
"gulp-sass": "^6.0.0",
"gulp-zip": "^6.0.0",
"husky": "^9.0.11",
"lighthouse-badges": "^1.3.7",
"lint-staged": "^15.2.2",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"sass": "^1.82.0",
"stylelint": "^16.11.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^14.0.0",
"throttle-debounce": "^5.0.2",
"through2": "^4.0.2",
"typescript": "^5.6.2",
"vitest": "^2.1.8",
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"vue-tsc": "^2.1.10",
"vuetify-nuxt-module": "^0.18.3"
},
"overrides": {
"eslint-config-standard": {
"eslint": ">=9.0.0"
}
}
}