-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
126 lines (126 loc) · 3.65 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
120
121
122
123
124
125
126
{
"name": "datashare-client",
"version": "11.2.1",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/ICIJ/datashare-client/"
},
"scripts": {
"serve": "vite serve",
"build": "vite build",
"test": "yarn test:unit",
"test:unit": "vitest --run",
"test:unit:watch": "vitest",
"lint": "eslint --ext .js,.mjs,.vue .",
"lint:fix": "yarn lint --fix",
"doc": "yarn doc:api && yarn doc:hooks && yarn doc:widgets",
"doc:dir": "mkdir -p dist/docs",
"doc:api": "npx jsdoc-to-markdown --plugin bin/dmd/plugin.js --separators --no-gfm --template bin/dmd/api.hbs src/core/*.js > 'dist/docs/api.md'",
"doc:hooks": "node bin/generateHook.js",
"doc:widgets": "npx jsdoc-to-markdown --plugin bin/dmd/plugin.js --separators --no-gfm --template bin/dmd/widgets.hbs src/store/widgets/*.js > 'dist/docs/widgets.md'",
"predoc": "yarn doc:dir"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.4",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.6",
"@icij/murmur-next": "4.1.5",
"@popperjs/core": "^2.11.8",
"axios": "^1.7.2",
"bodybuilder": "^2.5.0",
"bootstrap": "5.3.3",
"bootstrap-vue-next": "^0.22.1",
"d3": "^7.6.1",
"elasticsearch-browser": "16.7.1",
"fuse.js": "^7.0.0",
"image-js": "^0.35.5",
"intersection-observer": "^0.12.2",
"json-formatter-js": "^2.5.15",
"lodash": "^4.17.19",
"lucene": "^2.1.0",
"mitt": "^3.0.1",
"moment": "^2.29.4",
"mutationobserver-shim": "^0.3.7",
"path-browserify": "^1.0.1",
"path-to-regexp": "^6.2.2",
"resize-observer-polyfill": "^1.5.1",
"string-to-color": "^2.2.2",
"tiff": "^6.1.0",
"tiny-cookie": "^2.1.2",
"v-calendar": "^3",
"v-runtime-template": "^1.10.0",
"v3-infinite-loading": "^1.3.1",
"vue": "3.4.27",
"vue-ellipse-progress": "^2.1.2",
"vue-i18n": "^9.13.1",
"vue-multiselect": "3.0.0",
"vue-router": "^4.3.3",
"vue-scrollto": "^2.20.0",
"vue-sticky-directive": "^0.0.10",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vue-wait": "^1.5.3",
"vue3-perfect-scrollbar": "^2.0.0",
"vue3-shortkey": "^4.0.0",
"vue3-toastify": "^0.2.1",
"vuex": "^4",
"vuex-persistedstate": "^4.0.0-beta.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
"xss": "^1.0.13"
},
"devDependencies": {
"@icij/eslint-config-icij": "^1.0.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue/compiler-sfc": "^3.4.27",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.19",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vitest-globals": "^1.5.0",
"front-matter": "^4.0.2",
"handlebars": "^4.7.6",
"jsdoc-to-markdown": "^8.0.0",
"jsdom": "^24.0.0",
"sass": "^1.77.6",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.3.1",
"vitest": "^1.6.0",
"whatwg-fetch": "^3.5.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"engines": {
"node": ">= 16",
"npm": ">= 8"
},
"eslintConfig": {
"env": {
"vitest-globals/env": true,
"browser": true,
"es2022": true
},
"plugins": [
"vitest",
"vitest-globals"
],
"extends": [
"@icij/eslint-config-icij"
],
"rules": {
"vue/no-v-model-argument": "off",
"vue/no-v-for-template-key": "off",
"vue/no-custom-modifiers-on-v-model": "off",
"vue/valid-v-slot": "off"
}
}
}