-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.86 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.86 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
{
"name": "kitsu",
"version": "1.0.24",
"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.2.0",
"@sentry/vue": "10.48.0",
"@unhead/vue": "2.1.13",
"@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",
"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.0",
"marked-emoji": "2.0.3",
"moment": "2.30.1",
"moment-timezone": "0.6.1",
"panzoom": "9.4.4",
"papaparse": "5.5.3",
"qrcode.vue": "3.8.1",
"sanitize-html": "2.17.2",
"socket.io-client": "4.8.3",
"superagent": "10.3.0",
"thenby": "1.3.4",
"three": "0.182.0",
"uuid": "13.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.0.4",
"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.6",
"@vue/compiler-sfc": "3.5.13",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.5.0",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-vue": "10.8.0",
"globals": "17.5.0",
"husky": "9.1.7",
"jsdom": "29.0.2",
"lint-staged": "16.4.0",
"localStorage": "1.0.4",
"prettier": "3.8.3",
"sass": "1.99.0",
"vite": "8.0.8",
"vitest": "4.1.4",
"vitest-localstorage-mock": "0.1.2",
"vue-eslint-parser": "10.4.0"
},
"engines": {
"node": ">=20.19",
"npm": ">=10"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache"
}
}