-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "uplus-wss",
"version": "2.0.0",
"type": "module",
"scripts": {
"lint": "eslint src --fix; exit 0",
"dev": "vite",
"build": "vite build && node scripts/fix_files.mjs",
"preview": "vite preview --port 5050",
"test:e2e": "start-server-and-test preview http://localhost:5050 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://localhost:5050 'cypress run'",
"test:unit": "vitest run --coverage --environment jsdom",
"docker-build": "npx docker build --tag richardmarsot/uplus-wss -f ./Dockerfile .",
"docker-push": "npx docker push richardmarsot/uplus-wss"
},
"dependencies": {
"crypto-js": "^4.2.0",
"vue": "^3.5.13",
"vue-gtag": "^2.0.1",
"vue-i18n": "^11.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/test-utils": "^2.4.6",
"c8": "^10.1.3",
"cypress": "^13.17.0",
"eslint": "^9.18.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"replace-in-file": "^8.3.0",
"start-server-and-test": "^2.0.10",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}