-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
94 lines (94 loc) · 2.57 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
{
"name": "kitsu",
"version": "0.19.73",
"description": "Production Management Software (user interface)",
"author": "Frank Rousseau <[email protected]>",
"repository": "https://github.com/cgwire/kitsu",
"license": "AGPL-3.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue src/",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write --list-different src/**/*.{js,vue}",
"test:unit": "vitest tests/unit",
"prepare": "husky install"
},
"dependencies": {
"@animxyz/vue": "0.6.7",
"@fullcalendar/core": "6.1.15",
"@fullcalendar/daygrid": "6.1.15",
"@fullcalendar/multimonth": "6.1.15",
"@fullcalendar/vue": "6.1.15",
"@google/model-viewer": "3.5.0",
"@sentry/vue": "8.24.0",
"async": "3.2.5",
"bowser": "2.11.0",
"chart.js": "2.9.4",
"color-hash": "2.0.2",
"color-string": "1.9.1",
"fabric": "cgwire/fabric.js",
"lucide-vue": "0.424.0",
"marked": "14.0.0",
"marked-emoji": "1.4.2",
"moment": "2.30.1",
"moment-timezone": "0.5.45",
"panzoom": "9.4.3",
"papaparse": "5.4.1",
"qrcode.vue": "1.7.0",
"sanitize-html": "2.13.0",
"socket.io-client": "4.7.5",
"superagent": "9.0.2",
"textarea-caret": "3.1.0",
"thenby": "1.3.4",
"three": "0.163.0",
"uuid": "10.0.0",
"v-autocomplete": "1.8.2",
"vue": "2.7.16",
"vue-at": "2.5.1",
"vue-chartkick": "0.6.1",
"vue-drag-drop": "1.1.4",
"vue-i18n": "8.28.2",
"vue-meta": "2.4.0",
"vue-router": "3.6.5",
"vue-scroll": "2.1.13",
"vue-slider-component": "2.8.16",
"vue-textarea-autosize": "1.1.1",
"vue-websocket-next": "0.2.5",
"vuedraggable": "2.24.3",
"vuejs-datepicker": "1.6.2",
"vuex": "3.6.2",
"vuex-router-sync": "5.0.0",
"wavesurfer.js": "7.8.2"
},
"devDependencies": {
"@vitejs/plugin-vue2": "2.3.1",
"@vue/compiler-sfc": "2.7.16",
"@vue/test-utils": "1.3.6",
"autoprefixer": "10.4.20",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.27.0",
"esm": "3.2.25",
"husky": "8.0.3",
"jsdom": "24.1.1",
"lint-staged": "15.2.8",
"localStorage": "1.0.4",
"prettier": "3.3.3",
"sass": "1.77.8",
"vite": "5.4.0",
"vitest": "0.34.6",
"vitest-localstorage-mock": "0.1.2",
"vue-template-compiler": "2.7.16"
},
"engines": {
"node": ">=18.12"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache"
}
}