-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
{
"name": "demoshop-management-ui",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"check-ts": "run-p type-check",
"preview": "vite preview",
"test:unit": "vitest",
"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": "eslint ."
},
"dependencies": {
"@ckeditor/ckeditor5-vue": "^7.3.0",
"@fontsource/inter": "^5.1.1",
"@heroicons/vue": "^2.2.0",
"@microsoft/signalr": "^8.0.7",
"axios": "^1.7.9",
"ckeditor5": "^44.1.0",
"dompurify": "^3.2.3",
"luxon": "^3.5.0",
"pinia": "^2.3.0",
"uuid": "^11.0.5",
"vue": "^3.5.13",
"vue-currency-input": "^3.1.0",
"vue-i18n": "^11.0.1",
"vue-router": "^4.5.0",
"vue3-click-away": "^1.2.4"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.5",
"@typescript-eslint/parser": "^8.19.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/eslint-plugin": "1.1.24",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/language-plugin-pug": "^2.2.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"cypress": "^13.17.0",
"eslint": "^9.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vue-pug": "^0.6.2",
"jsdom": "^26.0.0",
"npm-run-all2": "^7.0.2",
"pug": "^3.0.3",
"sass": "^1.83.1",
"signalr": "link:@types/@microsoft/signalr",
"start-server-and-test": "^2.0.9",
"typescript": "~5.7.3",
"vite": "^6.0.7",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mkcert": "^1.17.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
}
}