-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
94 lines (94 loc) · 2.58 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.20.8",
"description": "Production Management Software (user interface)",
"author": "Frank Rousseau <frank@cg-wire.com>",
"repository": "https://github.com/cgwire/kitsu",
"license": "AGPL-3.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"format": "prettier --write --list-different src/**/*.{js,vue}",
"lint": "eslint --ext .js,.vue src/",
"lint:fix": "npm run lint -- --fix",
"preview": "vite preview",
"test": "npm run test:unit",
"test:unit": "vitest tests/unit",
"prepare": "husky install"
},
"dependencies": {
"@animxyz/vue3": "0.6.7",
"@fullcalendar/core": "6.1.15",
"@fullcalendar/daygrid": "6.1.15",
"@fullcalendar/multimonth": "6.1.15",
"@fullcalendar/vue3": "6.1.15",
"@google/model-viewer": "3.5.0",
"@sentry/vue": "8.45.1",
"@unhead/vue": "1.11.14",
"@vuepic/vue-datepicker": "9.0.3",
"async": "3.2.6",
"bowser": "2.11.0",
"chart.js": "4.4.7",
"chartkick": "5.0.1",
"color-hash": "2.0.2",
"color-string": "1.9.1",
"fabric": "cgwire/fabric.js",
"lucide-vue-next": "0.468.0",
"marked": "14.1.4",
"marked-emoji": "1.4.3",
"moment": "2.30.1",
"moment-timezone": "0.5.46",
"panzoom": "9.4.3",
"papaparse": "5.4.1",
"qrcode.vue": "3.6.0",
"sanitize-html": "2.13.1",
"socket.io-client": "4.8.1",
"superagent": "9.0.2",
"textarea-caret": "3.1.0",
"thenby": "1.3.4",
"three": "0.163.0",
"uuid": "10.0.0",
"v-autosize": "2.0.1",
"vue": "3.5.13",
"vue-3-slider-component": "1.0.1",
"vue-at": "3.0.0-alpha.2",
"vue-chartkick": "1.1.0",
"vue-i18n": "9.14.2",
"vue-meta": "2.4.0",
"vue-multiselect": "3.1.0",
"vue-router": "4.5.0",
"vue-websocket-next": "0.2.7",
"vuedraggable": "4.1.0",
"vuex": "4.1.0",
"vuex-router-sync": "6.0.0-rc.1",
"wavesurfer.js": "7.8.11"
},
"devDependencies": {
"@vitejs/plugin-vue": "5.2.1",
"@vue/compiler-sfc": "3.5.13",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.32.0",
"esm": "3.2.25",
"husky": "8.0.3",
"jsdom": "24.1.3",
"lint-staged": "15.2.11",
"localStorage": "1.0.4",
"prettier": "3.4.2",
"sass": "1.78.0",
"vite": "5.4.11",
"vitest": "0.34.6",
"vitest-localstorage-mock": "0.1.2"
},
"engines": {
"node": ">=18.12"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache"
}
}