-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.62 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "impresso-frontend",
"version": "3.0.5",
"description": "Frontend app for impresso project",
"author": "impresso <[email protected]>",
"contributors": [
"Thijs van Beek",
"Daniele Guido",
"Roman Kalyakin",
"Paul Schroeder"
],
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"dev-staging": "vite --mode staging",
"dev-prod": "vite --mode prod",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build --base=/app",
"build-only-dev": "vite build --mode development",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"start": "npm run serve",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@feathersjs/authentication-client": "5.0.25",
"@feathersjs/feathers": "5.0.25",
"@feathersjs/rest-client": "5.0.25",
"@feathersjs/socketio-client": "5.0.25",
"@floating-ui/vue": "^1.1.5",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"axios": "1.7.7",
"d3": "7.9.0",
"diff": "^5.1.0",
"dripicons": "2.0.0",
"filepond": "4.9.4",
"filepond-plugin-file-validate-size": "2.2.0",
"filepond-plugin-file-validate-type": "1.2.4",
"impresso-jscommons": "github:impresso/impresso-jscommons#v1.4.1",
"markdown-it": "12.3.2",
"markdown-it-decorate": "1.2.2",
"mitt": "^3.0.1",
"openseadragon": "^4.1.0",
"pinia": "2.1.7",
"pinia-plugin-persistedstate": "3.2.1",
"socket.io-client": "4.7.5",
"svg-overlay": "github:openseadragon/svg-overlay",
"uuid": "9.0.1",
"vue": "3.4.30",
"vue-3-slider-component": "1.0.0",
"vue-flatpickr-component": "11.0.5",
"vue-i18n": "9.13.1",
"vue-matomo": "^4.2.0",
"vue-router": "4.3.2",
"webfontloader": "1.6.28"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@intlify/unplugin-vue-i18n": "4.0.0",
"@rushstack/eslint-patch": "^1.8.0",
"@storybook/addon-actions": "^8.3.5",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/test": "^8.3.5",
"@storybook/vue3": "^8.3.5",
"@storybook/vue3-vite": "^8.3.5",
"@tsconfig/node20": "^20.1.4",
"@types/d3": "^5.7.2",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^7.0.2",
"@types/node": "^20.12.5",
"@types/openseadragon": "^2.4.5",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.5",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "10.4.19",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.23.0",
"jsdom": "^24.0.0",
"less": "4.2.0",
"msw": "^2.3.1",
"msw-storybook-addon": "^2.0.2",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"sass": "1.77.4",
"start-server-and-test": "^2.0.3",
"storybook": "^8.3.5",
"storybook-vue3-router": "^5.0.0",
"typescript": "~5.4.0",
"vite": "^5.3.1",
"vite-plugin-vue-devtools": "7.3.0-beta.2",
"vitest": "^1.4.0",
"vue-component-type-helpers": "^2.0.21",
"vue-tsc": "^2.0.11"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"msw": {
"workerDirectory": [
"public"
]
}
}