-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.57 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nei-market-analytics-front",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "MIT",
"main": "main.ts",
"author": "Victor José Lopes Navarro",
"scripts": {
"dev": "vite",
"up": "cd api && bun dev",
"builds": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"test:report": "bunx playwright show-report",
"test:e2e-ui": "bunx playwright test --ui",
"storybook": "STORYBOOK=true storybook dev -p 6006",
"lint": "npx @biomejs/biome format --write ./",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"build-storybook": "storybook build",
"docker-build": "docker build -t nei_market_front .",
"docker-run": "docker-compose up --build",
"docker-clean": "docker-compose down"
},
"dependencies": {
"@radix-icons/vue": "^1.0.0",
"@unovis/ts": "^1.5.0",
"@unovis/vue": "^1.5.0",
"@vueuse/core": "^11.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-http-backend": "^2.7.1",
"i18next-vue": "^5.0.0",
"lucide-vue-next": "^0.454.0",
"mitt": "^3.0.1",
"pinia": "^2.3.1",
"radix-vue": "^1.9.12",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"translate": "^3.0.1",
"vaul-vue": "^0.2.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-sonner": "^1.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chromatic-com/storybook": "^2.0.2",
"@playwright/test": "^1.49.1",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-links": "^8.5.0",
"@storybook/addon-onboarding": "^8.5.0",
"@storybook/blocks": "^8.5.0",
"@storybook/manager-api": "^8.5.0",
"@storybook/test": "^8.5.0",
"@storybook/theming": "^8.5.0",
"@storybook/vue3": "^8.5.0",
"@storybook/vue3-vite": "^8.5.0",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.7",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"jsdom": "^25.0.1",
"npm-run-all2": "^6.2.6",
"start-server-and-test": "^2.0.10",
"storybook": "^8.5.0",
"storybook-vue3-router": "^5.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.5.4",
"vite": "^5.4.14",
"vite-plugin-vue-devtools": "^7.7.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
},
"trustedDependencies": ["@biomejs/biome"]
}