-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.71 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
{
"name": "companies-webapp",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vite preview",
"build": "vite build",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore .",
"check-format": "prettier --check '*.{ts,js,scss,vue}'",
"check-lint": "eslint . --ext ts --ext tsx --ext js --ext tsx --ext vue",
"check-types": "tsc --pretty --noEmit",
"dev": "vite",
"format": "prettier --write .",
"husky:init": "husky install",
"husky:tests": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/vue-fontawesome": "^3.0.1",
"axios": "^1.1.2",
"vue": "^3.2.37"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.1",
"autoprefixer": "^10.4.12",
"eslint": "^8.23.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^9.4.0",
"husky": "^8.0.1",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.2",
"vite": "^3.1.0",
"vite-plugin-vuetify": "^1.0.0-alpha.12",
"vue-cli-plugin-vuetify": "~2.5.5",
"vue-tsc": "^0.40.4"
}
}