-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
{
"name": "challenge-full-stack-web",
"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 & npm --prefix ./server/ run dev",
"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",
"test": "vitest"
},
"dependencies": {
"@mdi/font": "5.9.55",
"axios": "^0.27.2",
"maska": "^1.5.0",
"roboto-fontface": "*",
"sweetalert2": "^11.4.32",
"vue": "^3.2.37",
"vue-router": "^4.1.5",
"vue3-easy-data-table": "^1.4.17",
"vuetify": "^3.0.0-beta.0",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@fortawesome/fontawesome-free": "^6.2.0",
"@types/webfontloader": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitejs/plugin-vue": "^3.1.0",
"@vitest/coverage-c8": "^0.23.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.1",
"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",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"typescript": "^4.8.2",
"vite": "^3.1.0",
"vite-plugin-vuetify": "^1.0.0-alpha.12",
"vitest": "^0.23.2",
"vue-cli-plugin-vuetify": "~2.5.5",
"vue-tsc": "^0.40.4"
}
}