-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.14 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.14 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
{
"name": "theark-website",
"version": "1.0.0",
"description": "Modern and responsive personal portfolio website built with Nuxt 3",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/thearkxd/website.git"
},
"keywords": [
"nuxt",
"nuxt3",
"vue",
"portfolio",
"typescript",
"tailwindcss"
],
"author": "Theark",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"typecheck": "nuxt typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nuxtjs/color-mode": "^3.2.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/i18n": "10.2.1",
"@nuxtjs/tailwindcss": "^6.3.0",
"@pinia/nuxt": "^0.11.3",
"@types/node": "^18.11.18",
"@vuelidate/core": "^2.0.2",
"@vuelidate/validators": "^2.0.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"limiter": "^2.1.0",
"lint-staged": "^13.1.1",
"node-fetch": "^3.3.0",
"nuxt": "^3.9.0",
"prettier": "^2.8.4",
"spotify-web-api-node": "^5.0.2",
"tailwindcss-filters": "^3.0.0",
"typescript": "^4.9.5",
"vue3-toastify": "^0.1.6",
"@nuxt/test-utils": "^3.9.0",
"@vitest/ui": "^1.0.0",
"@vue/test-utils": "^2.4.0",
"happy-dom": "^12.0.0",
"vitest": "^1.0.0",
"@vitest/coverage-v8": "^1.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"aos": "^2.3.4",
"pinia": "^3.0.4",
"vue-content-loader": "^2.0.1"
},
"lint-staged": {
"**/*.{js,ts,vue,html,css}": [
"yarn lintfix"
]
}
}