-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "@floroz/portfolio-v3",
"author": {
"name": "Daniele Tortora",
"url": "https://danieletortora.netlify.app"
},
"license": "MIT",
"repository": {
"url": "https://github.com/floroz/portfolio-v3"
},
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"lint": "TIMING=10 eslint . --ext .js,.ts,.tsx,.vue,.html --ignore-path .gitignore",
"lintfix": "npm run lint -- --fix",
"postinstall": "nuxt prepare",
"prepare": "husky install",
"preview": "nuxt preview",
"test": "vitest",
"typecheck": "nuxi typecheck"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@nuxt/image-edge": "1.3.0-28493895.369b747",
"@nuxt/test-utils": "^3.14.4",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unicorn": "^48.0.0",
"eslint-plugin-vitest": "^0.0.53",
"eslint-plugin-vue": "^9.15.1",
"husky": "^8.0.3",
"jsdom": "^25.0.1",
"lint-staged": "^13.2.3",
"nuxt": "^3.14.159",
"nuxt-icons": "^3.2.1",
"nuxt-svgo": "^3.4.0",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"engines": {
"node": "20.11"
},
"lint-staged": {
"**/*.{js,ts,tsx,vue,html,css,scss}": [
"eslint .",
"prettier --write"
]
},
"dependencies": {
"nuxt-icon": "^0"
}
}