-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.5 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
{
"name": "chat.app.privacysafe.io",
"version": "0.7.8",
"license": "GPL-3.0-or-later",
"private": true,
"type": "module",
"scripts": {
"clean:coverage": "rimraf coverage",
"dev": "vite",
"build:deno": "bash ci/bundle-deno-code.sh",
"build:gui": "vue-tsc --noEmit && vite build",
"build": "pnpm run build:gui && pnpm run build:deno",
"serve": "vite preview",
"stylelint": "stylelint --config .stylelint.config.cjs 'src-main/**/*.{vue,scss}'",
"stylelint:fix": "stylelint --config .stylelint.config.cjs --fix 'src-main/**/*.{vue,scss}'",
"linter": "eslint -c .eslintrc.js --ext .js,.vue,.ts, src-main",
"linter:fix": "eslint -c .eslintrc.js --fix --ext .js,.vue,.ts, src-main",
"lint": "pnpm linter && yarn stylelint",
"lint:fix": "pnpm linter:fix && yarn stylelint:fix",
"test:watch": "pnpm clean:coverage && jest --watch"
},
"dependencies": {
"@v1nt1248/3nclient-lib": "0.1.36",
"dayjs": "1.11.13",
"lodash": "4.17.21",
"pinia": "2.2.4",
"vue": "3.5.12",
"vue-router": "4.4.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/vue": "8.1.0",
"@types/jasmine": "5.1.4",
"@types/jest": "29.5.13",
"@types/lodash": "4.17.10",
"@types/node": "20.16.5",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"@vitejs/plugin-vue": "5.1.4",
"@vue/devtools": "7.5.4",
"@vue/eslint-config-typescript": "14.1.3",
"@vuedx/typescript-plugin-vue": "0.7.6",
"eslint": "9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vue": "^9.29.1",
"globals": "^15.11.0",
"jest": "29.7.0",
"jest-serializer-vue": "3.1.0",
"jest-transform-stub": "2.0.0",
"postcss-html": "^1.7.0",
"sass": "^1.80.4",
"stylelint": "16.10.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard": "36.0.1",
"stylelint-scss": "6.7.0",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "^8.11.0",
"unplugin-vue-components": "0.27.4",
"vite": "5.4.10",
"vite-plugin-vue-devtools": "^7.5.2",
"vue-eslint-parser": "^9.4.3",
"vue-jest": "3.0.7",
"vue-tsc": "2.1.6"
},
"packageManager": "pnpm@9.12.0"
}