-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.2 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
{
"name": "kuzzle-admin-console",
"version": "4.4.0",
"description": "A handy administrative console for Kuzzle",
"author": "The Kuzzle team <support@kuzzle.io>",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:e2e",
"test:e2e": "cypress run",
"test:lint": "eslint src --ext .ts,.vue",
"test:lint:fix": "npm run test:lint -- --fix",
"test:types": "vue-tsc --noEmit -p tsconfig.test.json",
"cy:open": "cypress open"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.7.2",
"@vuelidate/core": "2.0.3",
"@vuelidate/validators": "2.0.4",
"ace-builds": "1.39.1",
"apexcharts": "3.53.0",
"bluebird": "3.7.2",
"bootstrap": "4.6.2",
"bootstrap-vue": "2.23.1",
"json-formatter-js": "2.5.23",
"kepler-companion": "1.1.6",
"kuzzle-sdk-v6": "npm:kuzzle-sdk@6.2.8",
"kuzzle-sdk-v7": "npm:kuzzle-sdk@^7.15.0",
"leaflet": "1.9.4",
"lodash": "4.17.21",
"moment": "2.30.1",
"pinia": "2.2.4",
"velocity-animate": "1.5.2",
"vue": "2.7.16",
"vue-apexcharts": "1.6.2",
"vue-color": "2.8.1",
"vue-form-generator": "2.3.4",
"vue-multipane": "0.9.5",
"vue-multiselect": "2.1.7",
"vue-router": "3.6.5",
"vue2-leaflet": "2.7.1",
"vuedraggable": "2.24.3",
"vuejs-logger": "1.5.5"
},
"devDependencies": {
"@types/leaflet": "1.9.17",
"@types/node": "22.5.5",
"@vitejs/plugin-vue2": "2.3.1",
"@vue/test-utils": "1.3.6",
"cypress": "13.14.2",
"cypress-file-upload": "5.0.8",
"cypress-wait-until": "3.0.2",
"eslint-plugin-cypress": "3.5.0",
"eslint-plugin-vue-kuzzle": "0.0.13",
"file-loader": "6.2.0",
"kuzzle": "2.52.0",
"rollup-plugin-visualizer": "5.14.0",
"sass": "1.86.3",
"ts-mock-imports": "1.3.16",
"typescript": "5.4.5",
"vite": "5.4.6",
"vue-tsc": "2.2.8"
},
"engines": {
"node": ">= 20.0.0",
"npm": ">= 10.0.0"
},
"keywords": [
"kuzzle",
"backoffice",
"console",
"admin",
"admin console"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/kuzzleio/kuzzle-admin-console.git"
}
}