forked from w3champions/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.81 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
{
"name": "third",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite -d --host 0.0.0.0",
"serve:prod": "yarn run build:prod && http-server ./dist",
"build:prod": "yarn run generate-locales && rimraf ./dist && vite build",
"serve:dev": "yarn run build:dev && http-server ./dist",
"build:dev": "rimraf ./dist && vite build",
"lint": "eslint --no-fix src/",
"lint:fix": "eslint --fix src/",
"generate-locales": "tsx scripts/generate-locales.ts",
"dprint": "dprint check",
"dprint:fix": "dprint fmt"
},
"dependencies": {
"@fontsource-variable/inter": "~5.0.16",
"@mdi/js": "~7.2.96",
"@tiptap/core": "^2.0.3",
"@tiptap/extension-bold": "^2.0.3",
"@tiptap/extension-bullet-list": "^2.0.3",
"@tiptap/extension-code": "^2.0.3",
"@tiptap/extension-document": "^2.0.3",
"@tiptap/extension-dropcursor": "^2.0.3",
"@tiptap/extension-heading": "^2.0.3",
"@tiptap/extension-history": "^2.0.3",
"@tiptap/extension-horizontal-rule": "^2.0.3",
"@tiptap/extension-image": "^2.0.3",
"@tiptap/extension-italic": "^2.0.3",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-list-item": "^2.0.3",
"@tiptap/extension-ordered-list": "^2.0.3",
"@tiptap/extension-paragraph": "^2.0.3",
"@tiptap/extension-strike": "^2.0.3",
"@tiptap/extension-text": "^2.0.3",
"@tiptap/extension-underline": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/vue-2": "^2.0.3",
"chart.js": "^4.2.1",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-annotation": "^3.0.1",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"debounce": "^2.0.0",
"lodash": "^4.17.21",
"marked": "^11.1.1",
"pinia": "^2.0.32",
"vue": "^2.7.14",
"vue-chartjs": "^5.2.0",
"vue-cookies": "^1.8.4",
"vue-country-flag": "^2.3.2",
"vue-i18n": "^8.28.2",
"vue-i18n-bridge": "9.13.1",
"vue-router": "^3.6.5",
"vuetify": "^2.7.2"
},
"devDependencies": {
"@types/google-spreadsheet": "^3.3.0",
"@types/lodash": "^4.14.191",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-legacy": "^4.1.1",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue/eslint-config-typescript": "^11.0.2",
"deepmerge": "^4.2.2",
"dotenv": "^16.0.3",
"dprint": "^0.47.2",
"eslint": "^8.31.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-vue": "^9.26.0",
"eslint-plugin-vuetify": "^1.1.0",
"google-spreadsheet": "^3.2.0",
"http-server": "^14.1.1",
"lodash.set": "^4.3.2",
"rimraf": "^5.0.0",
"sass": "~1.32.13",
"terser": "^5.29.2",
"ts-node": "^10.9.1",
"tsx": "^4.7.1",
"typescript": "~4.9.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.5.5"
}
}