-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.38 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
67
68
69
70
71
72
{
"name": "patchcord",
"version": "0.0.0",
"description": "Patchcord for Web",
"private": true,
"type": "module",
"author": "Vladislav Koshelev",
"license": "ISC",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite --host",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"prepare": "cypress install",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint:script": "eslint . --fix --cache",
"lint:style": "npx stylelint 'src/**/*.{css,scss,vue}' --fix",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@floating-ui/vue": "^1.1.10",
"@vee-validate/zod": "^4.15.1",
"mediasoup-client": "^3.18.7",
"pinia": "^3.0.3",
"socket.io-client": "^4.8.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@storybook/vue3-vite": "^10.0.8",
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^27.0.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/eslint-plugin": "^1.3.23",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cypress": "^15.5.0",
"eslint": "^9.37.0",
"eslint-plugin-cypress": "^5.2.0",
"eslint-plugin-storybook": "^10.0.8",
"eslint-plugin-vue": "~10.5.0",
"jiti": "^2.6.1",
"jsdom": "^27.0.1",
"npm-run-all2": "^8.0.4",
"prettier": "3.6.2",
"sass-embedded": "^1.93.3",
"start-server-and-test": "^2.1.2",
"storybook": "^10.0.8",
"stylelint": "^16.25.0",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-standard-scss": "^16.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^7.0.0",
"typescript": "~5.9.0",
"vite": "^7.1.11",
"vite-plugin-vue-devtools": "^8.0.3",
"vitest": "^3.2.4",
"vue-tsc": "^3.1.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}