-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 2.38 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": "xmpp-web",
"version": "0.10.2",
"private": true,
"description": "Lightweight web chat client for XMPP server",
"homepage": "https://github.com/nioc/xmpp-web",
"bugs": {
"url": "https://github.com/nioc/xmpp-web/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nioc/xmpp-web.git"
},
"author": "nioc <dev@nioc.eu>",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite build && vite preview --port 8080",
"configure-git-hook": "cp docs/git-hooks/commit-msg .git/hooks/",
"cy:open-e2e": "cypress open --e2e --config baseUrl=http://localhost:3000/ --browser electron",
"cy:run-e2e-dev": "cypress run --e2e --config baseUrl=http://localhost:3000/",
"cy:run-e2e-preview": "cypress run --e2e --config baseUrl=http://localhost:8080/",
"test:dev": "start-server-and-test dev http://localhost:3000 cy:run-e2e-dev",
"test:preview": "start-server-and-test preview http://localhost:8080 cy:run-e2e-preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore --ignore-pattern 'docs/*'",
"lint-fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore --ignore-pattern 'docs/*'"
},
"xmppWeb": {
"latestReleaseUrl": "https://api.github.com/repos/nioc/xmpp-web/releases/latest"
},
"dependencies": {
"@creativebulma/bulma-divider": "^1.1.0",
"@oruga-ui/oruga-next": "^0.5.10",
"@oruga-ui/theme-bulma": "^0.2.11",
"@vueuse/core": "^9.13.0",
"@xmpp/client": "^0.13.1",
"@xmpp/debug": "^0.13.0",
"@xmpp/error": "^0.13.1",
"axios": "^1.7.2",
"bulma": "^0.9.4",
"dayjs": "^1.11.11",
"filesize": "^10.1.2",
"fork-awesome": "^1.2.0",
"gemoji": "^8.1.0",
"mime": "^3.0.0",
"nanoid": "^4.0.2",
"pinia": "^2.1.7",
"sanitize-html": "^2.13.0",
"spdx-license-list": "^6.9.0",
"vue": "^3.2.37",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.39",
"@types/sanitize-html": "^2.11.0",
"@vitejs/plugin-vue": "^4.6.2",
"cypress": "^13.9.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"mock-socket": "^9.3.1",
"prettier": "^2.8.8",
"sass": "^1.77.2",
"start-server-and-test": "^2.0.3",
"vite": "^4.5.3",
"vite-plugin-istanbul": "^5.0.0",
"vite-plugin-pwa": "^0.14.7"
}
}