forked from MarcelCoding/m4rc3l.de-old2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.03 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
{
"name": "m4rc3l.de",
"version": "1.0.0",
"packageManager": "pnpm@6",
"private": true,
"author": "Marcel <https://github.com/MarcelCoding>",
"description": "Hi, my name is Marcel. This is my website where you can find my personal profile and my blog.",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
"lintfix": "prettier --write --list-different . && npm run lint:js -- --fix && npm run lint:style -- --fix"
},
"dependencies": {
"@fontsource/dm-mono": "^4.5.7",
"@fontsource/dm-sans": "^4.5.6",
"@nuxt/content": "^1.15.1",
"@nuxtjs/feed": "^2.0.0",
"@nuxtjs/pwa": "^3.3.5",
"consola": "^2.15.3",
"core-js": "^3.22.2",
"nuxt": "^2.15.8",
"nuxt-content-body-html": "^1.1.3",
"prism-themes": "^1.9.0",
"vue": "^2.6.14",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@nuxt/image": "^0.5.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^8.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/stylelint-module": "^4.1.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "*",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-vue": "^8.6.0",
"postcss-html": "^1.4.1",
"prettier": "^2.6.2",
"sass": "^1.50.1",
"sass-loader": "^10.2.1",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^25.0.0",
"typescript": "~4.6.3",
"webpack": "^4.46.0"
}
}