forked from virtusize/frontend-assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"name": "virtusize-assignment",
"version": "1.0.0",
"description": "A frontend coding challenge for Virtusize Frontend team",
"type": "module",
"private": true,
"scripts": {
"api": "dotenv -- cross-var json-server --watch clients.json --port %VITE_JSON_SERVER_PORT%",
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:debug": "eslint . --debug",
"lint:fix": "eslint . --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"author": "Rii Salcedo <rii.codes.pretty@gmail.com>",
"license": "UNLICENSED",
"dependencies": {
"@auth0/auth0-vue": "^2.4.0",
"@nuxt/ui": "^3.3.0",
"@tailwindcss/vite": "^4.1.11",
"@vue-a11y/announcer": "^3.1.5",
"@vueuse/core": "^13.6.0",
"json-server": "0.17.4",
"pinia": "^3.0.3",
"tailwindcss": "^4.1.11",
"vue": "^3.5.17",
"vue-router": "4",
"zod": "^4.0.14"
},
"devDependencies": {
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.32.0",
"@iconify-json/lucide": "^1.2.60",
"@pinia/testing": "^1.0.2",
"@stylistic/eslint-plugin": "^5.2.2",
"@types/node": "^24.1.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"cross-var": "^1.1.0",
"dotenv-cli": "^10.0.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-tailwindcss": "^4.0.0-beta.0",
"eslint-plugin-vue": "^10.4.0",
"happy-dom": "^18.0.1",
"typescript": "~5.8",
"typescript-eslint": "^8.38.0",
"unplugin-icons": "^22.2.0",
"vite": "^7.0.4",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.12"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"core-js"
]
}