-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.01 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
{
"name": "tekst",
"version": "0.2.0-alpha.0",
"private": true,
"type": "module",
"scripts": {
"api-schema": "node scripts/schemaTransform.mjs; eslint src/api/schema.d.ts --fix; prettier --write src/api/schema.d.ts",
"help-texts": "node scripts/parseHelpTexts.mjs; eslint src/assets/help/index.ts --fix",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"prepare": "run-p help-texts",
"prebuild": "run-s prepare",
"build-only": "vite build",
"build": "run-p type-check \"build-only {@}\" --",
"start": "vite",
"preview": "vite preview"
},
"dependencies": {
"@tiptap/extension-character-count": "^2.7.1",
"@tiptap/extension-image": "^2.7.1",
"@tiptap/extension-link": "^2.7.1",
"@tiptap/extension-text-align": "^2.7.1",
"@tiptap/pm": "^2.7.1",
"@tiptap/starter-kit": "^2.7.1",
"@tiptap/vue-3": "^2.7.1",
"@vueuse/core": "^12.0.0",
"color2k": "^2.0.3",
"js-base64": "^3.7.7",
"js-cookie": "^3.0.5",
"normalize.css": "^8.0.1",
"openapi-fetch": "^0.13.0",
"pinia": "^2.2.2",
"vue": "^3.5.6",
"vue-i18n": "^10.0.1",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@babel/types": "^7.25.6",
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@intlify/unplugin-vue-i18n": "^6.0.0",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node20": "^20.1.4",
"@types/color": "^4.0.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.0.0",
"@vicons/material": "^0.13.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.0.1",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.29.0",
"marked": "^15.0.0",
"naive-ui": "^2.39.0",
"npm-run-all2": "^7.0.0",
"openapi-typescript": "^7.4.1",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8",
"typescript": "~5.6.0",
"vite": "^6.0.0",
"vue-tsc": "^2.1.6"
}
}