-
-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.89 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.89 KB
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
{
"name": "kitsu",
"version": "1.0.43",
"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 src/",
"lint:test": "eslint tests/",
"lint:fix": "npm run lint -- --fix",
"lint:test:fix": "npm run lint:test -- --fix",
"preview": "vite preview",
"test": "npm run test:unit",
"test:unit": "vitest tests/unit",
"prepare": "husky"
},
"dependencies": {
"@animxyz/vue3": "0.6.7",
"@fullcalendar/core": "6.1.20",
"@fullcalendar/daygrid": "6.1.20",
"@fullcalendar/multimonth": "6.1.20",
"@fullcalendar/vue3": "6.1.20",
"@google/model-viewer": "4.3.0",
"@sentry/vue": "10.56.0",
"@unhead/vue": "3.1.1",
"@vuepic/vue-datepicker": "11.0.3",
"bowser": "2.14.1",
"bulma": "0.3.1",
"chart.js": "4.5.1",
"chartkick": "5.0.1",
"color-hash": "2.0.2",
"color-string": "1.9.1",
"core-js": "3.49.0",
"diff2html": "3.4.56",
"exceljs": "4.4.0",
"fabric": "cgwire/fabric.js",
"fabricjs-psbrush": "cgwire/fabricjs-psbrush",
"file-saver": "2.0.5",
"lucide-vue-next": "0.577.0",
"marked": "18.0.4",
"marked-emoji": "2.0.3",
"moment": "2.30.1",
"moment-timezone": "0.6.2",
"panzoom": "9.4.4",
"papaparse": "5.5.3",
"qrcode.vue": "3.9.1",
"sanitize-html": "2.17.4",
"socket.io-client": "4.8.3",
"superagent": "10.3.0",
"thenby": "1.3.4",
"three": "0.184.0",
"uuid": "14.0.0",
"v-autosize": "2.0.1",
"vue": "3.5.13",
"vue-3-slider-component": "1.0.2",
"vue-at": "3.0.0-alpha.3",
"vue-chartkick": "1.1.0",
"vue-i18n": "9.14.5",
"vue-multiselect": "3.5.0",
"vue-router": "5.1.0",
"vue-websocket-next": "0.2.7",
"vue3-emoji-picker": "1.1.8",
"vuedraggable": "4.1.0",
"vuex": "4.1.0",
"vuex-router-sync": "6.0.0-rc.1",
"wavesurfer.js": "7.11.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@vitejs/plugin-vue": "6.0.7",
"@vue/compiler-sfc": "3.5.13",
"@vue/test-utils": "2.4.10",
"autoprefixer": "10.5.0",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-promise": "7.3.0",
"eslint-plugin-vue": "10.9.1",
"globals": "17.6.0",
"husky": "9.1.7",
"jsdom": "29.1.1",
"lint-staged": "17.0.7",
"localStorage": "1.0.4",
"prettier": "3.8.3",
"sass": "1.100.0",
"vite": "8.0.16",
"vitest": "4.1.8",
"vitest-localstorage-mock": "0.1.2",
"vue-eslint-parser": "10.4.1"
},
"engines": {
"node": ">=22.22.1",
"npm": ">=10"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache"
}
}