-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
111 lines (111 loc) · 3.82 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "traq_s-ui",
"version": "3.21.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:with-font": "npm run gen-fonts && npm run build",
"build:may-with-font": "MAY_SKIP_FONT_GEN=1 npm run gen-fonts && npm run build",
"preview": "vite preview --host 127.0.0.1 --port 4173",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest -w",
"test:e2e": "npm run build && npm run test:e2e:only-run",
"test:e2e-headless": "npm run build:may-with-font && npm run test:e2e:only-run-headless",
"test:e2e:only-run": "start-server-and-test preview 4173 'cypress open --e2e'",
"test:e2e:only-run-headless": "start-server-and-test preview 4173 'cypress run --headless'",
"lint": "eslint --fix --cache .",
"lint:no-fix": "eslint --cache .",
"format": "prettier --cache --write .",
"type-check": "npm run type-check:src && npm run type-check:test",
"type-check:src": "vue-tsc --noEmit",
"type-check:test": "tsc --noEmit --project tests/unit/tsconfig.json && tsc --noEmit --project tests/e2e/tsconfig.json",
"gen-fonts": "node build/gen-mplus.js",
"gen-unicode_emojis": "node build/gen-unicode_emojis.js",
"postinstall": "patch-package"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@sapphi-red/web-noise-suppressor": "^0.3.5",
"@traptitech/traq": "^3.17.0-3",
"@traptitech/traq-markdown-it": "^6.3.0",
"autosize": "^6.0.1",
"cropperjs": "^1.6.2",
"deepmerge": "^4.3.1",
"dequal": "^2.0.3",
"firebase": "^11.0.1",
"highlight.js": "^11.10.0",
"idb-keyval": "^6.2.0",
"mitt": "^3.0.0",
"skyway-js": "^4.4.5",
"text-field-edit": "^4.1.1",
"throttle-debounce": "^5.0.2",
"ts-pattern": "^5.5.0",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"vue-select": "^4.0.0-beta.6",
"vue-slider-component": "^4.0.0-beta.9",
"zod": "^3.23.8"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.10.1",
"@pinia/testing": "^0.1.6",
"@types/autosize": "^4.0.3",
"@types/dom-screen-wake-lock": "^1.0.3",
"@types/katex": "^0.16.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.8.7",
"@types/punycode": "^2.1.4",
"@types/serviceworker": "^0.0.101",
"@types/throttle-debounce": "^5.0.2",
"@types/turndown": "^5.0.5",
"@types/vue-select": "^3.16.8",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@types/webappsec-credential-management": "^0.6.8",
"@typescript/lib-dom": "npm:@types/web@^0.0.72",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.4",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"browserslist": "^4.24.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.30.0",
"cypress": "^13.15.1",
"esbuild": "^0.24.0",
"esbuild-plugin-browserslist": "^0.15.0",
"fonteditor-core": "^2.4.1",
"jsdom": "^25.0.1",
"patch-package": "^8.0.0",
"pinia": "^2.2.5",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"rollup-plugin-brotli": "^3.1.0",
"sass": "^1.80.5",
"start-server-and-test": "^2.0.8",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-pwa": "^0.20.5",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.3",
"vitest-github-actions-reporter": "^0.11.1",
"vue-tsc": "^2.1.10",
"workbox-cacheable-response": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-expiration": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0"
},
"engines": {
"node": "^20.15.0",
"npm": "^10.7.0"
}
}