-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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
{
"name": "victor.afanassieff.com",
"version": "1.0.0",
"description": "Victor Afanassieff website",
"repository": "[email protected]:vafanassieff/victor.afanassieff.com.git",
"author": {
"email": "[email protected]",
"name": "Victor Afanassieff"
},
"private": true,
"engines": {
"node": "16.13.2",
"pnpm": ">=6"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"eslint": "eslint --fix",
"prettier": "prettier --write",
"lint": "eslint --color 'src/**/*.{js,vue}'",
"format": "prettier --write 'src/**/*.{js,vue}'"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/vue-fontawesome": "^3.0.0-3",
"tailwindcss": "^3.0.15",
"vue": "^3.0.5"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.2.4",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tailwindcss": "^3.2.0",
"eslint-plugin-vue": "^8.3.0",
"eslint-plugin-vue-scoped-css": "^2.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"postcss": "^8.2.6",
"prettier": "^2.2.1",
"vite": "^2.0.1",
"vue-eslint-parser": "^8.0.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,vue}": "eslint"
}
}