-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
143 lines (143 loc) · 3.63 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"engines": {
"node": "18.12.0"
},
"description": "The EHRI project portal frontend",
"main": "build.sbt",
"dependencies": {
"@ttskch/select2-bootstrap4-theme": "~1.5.2",
"axios": "1.7.4",
"bootstrap": "^4.3.1",
"bootstrap-datepicker": "^1.9.0",
"clipboard": "^2.0.6",
"codemirror": "^5.58.1",
"corejs-typeahead": "^1.3.1",
"font-awesome": "^4.7.0",
"handlebars": "^4.4.3",
"jquery": "^3.4.1",
"jquery-flot": "^0.8.3",
"jquery-hoverintent": "^1.10.1",
"jquery-placeholder": "^2.3.1",
"jquery-validation": "^1.19.5",
"js-cookie": "^2.2.1",
"leaflet": "^1.7.1",
"leaflet-curve": "^1.0.0",
"lodash": "^4.17.21",
"luxon": "^1.25.0",
"markdown-it": "^14.1.0",
"material-design-icons": "^3.0.1",
"papaparse": "^5.3.2",
"select2": "^4.0.13",
"sortablejs": "^1.13.0",
"tiny-emitter": "^2.1.0",
"vue": "3.4.33",
"vue-i18n": "^9.13.1",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vuedraggable": "^4.1.0",
"xterm": "^4.18.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.5.1"
},
"scripts": {
"test": "jest",
"copy": "grunt copy-assets"
},
"author": "EHRI",
"license": "EUPL-1.2",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-transform-typescript": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.18.6",
"@types/codemirror": "^0.0.108",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.180",
"@types/luxon": "^1.26.2",
"@types/papaparse": "^5.3.2",
"@vue/test-utils": "2.4.6",
"@vue/vue3-jest": "29.2.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "29.7.0",
"css-loader": "^5.1.2",
"fork-ts-checker-webpack-plugin": "^6.1.1",
"grunt": "^1.5.3",
"grunt-contrib-copy": "^1.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"style-loader": "^2.0.0",
"ts-jest": "29.2.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"vue-loader": "17.4.2",
"webpack": "^5.54.0",
"webpack-cli": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EHRI/ehri-frontend.git"
},
"keywords": [
"archives"
],
"bugs": {
"url": "https://github.com/EHRI/ehri-frontend/issues"
},
"homepage": "https://github.com/EHRI/ehri-frontend#README.md",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"globals": {
"CONFIG": {},
"SERVICE": {},
"__languageData": {},
"LocaleData": {}
},
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
},
"collectCoverage": false,
"roots": [
"<rootDir>/modules/admin/app/assets/js/datasets",
"<rootDir>/modules/admin/app/assets/js/vocabeditor",
"<rootDir>/modules/admin/app/assets/js/apeditor",
"<rootDir>/modules/admin/app/assets/js/dmeditor"
],
"moduleFileExtensions": [
"js",
"json",
"ts",
"node",
"vue"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/modules/admin/app/assets/js/__mocks__/styleMock.js"
},
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[tj]s?(x)"
],
"modulePathIgnorePatterns": [
"/target/",
"/.+/target/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/target/",
"/.+/target/"
],
"transform": {
"^.+\\.[jt]sx?$": "babel-jest",
"^.+\\.vue$": "@vue/vue3-jest"
}
}
}