This repository has been archived by the owner on Sep 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.29 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
{
"name": "alignmnet-editor-vue3",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "npx webpack serve --config build/core.config.js",
"build": "npm run build-output && npm run build-core-prod && npm run build-pages",
"build-dev": "npm run build-output && npm run build-core-dev && npm run build-pages",
"build-core-prod": "npx webpack --config build/core/prod.config.js",
"build-core-dev": "npx webpack --config build/core/dev.config.js",
"build-output": "npx webpack --config build/output.config.js",
"build-pages": "npx webpack --config build/pages.config.js",
"test": "jest tests --coverage",
"test-vue": "jest tests/vue/ --coverage",
"test-a": "jest tests/lib/controllers/",
"test-b": "jest tests/lib/data/",
"test-c": "jest tests/lib/tokenizers/",
"test-d": "jest tests/vue/text-editor/text-editor-single-block.test.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@splidejs/splide": "^4.0.2",
"intl-messageformat": "^10.0.1",
"mitt": "^3.0.0",
"vue": "^3.2.36",
"vue-multiselect": "^3.0.0-alpha.2",
"vue3-youtube": "^0.1.9",
"vuedraggable": "^4.1.0",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/register": "^7.17.7",
"@babel/runtime": "^7.18.3",
"@vue/babel-preset-app": "^5.0.4",
"@vue/compiler-sfc": "^3.2.36",
"@vue/test-utils": "^2.0.0-rc.18",
"@vue/vue3-jest": "^27.0.0",
"alpheios-core": "https://github.com/alpheios-project/alpheios-core.git#incr-3.4.x",
"alpheios-messaging": "https://github.com/alpheios-project/alpheios-messaging",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"babel-plugin-module-resolver": "^4.1.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"dotenv-webpack": "^7.1.0",
"fake-indexeddb": "^3.1.8",
"file-loader": "^6.2.0",
"html-inline-css-webpack-plugin": "^1.11.1",
"html-inline-script-webpack-plugin": "^3.0.0",
"html-loader": "^3.1.0",
"html-loader-jest": "^0.2.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.0.0",
"jest-environment-jsdom": "^27.0.0",
"mini-css-extract-plugin": "^2.6.0",
"papaparse": "^5.3.2",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"uuid": "^3.4.0",
"vue-loader": "^17.0.0",
"vue-svg-loader": "^0.17.0-beta.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"jest": {
"testEnvironment": "jsdom",
"verbose": true,
"globals": {
"DEVELOPMENT_MODE_BUILD": true
},
"moduleNameMapper": {
"^@[/](.+)": "<rootDir>/src/$1",
"^@tests[/](.+)": "<rootDir>/tests/$1",
"alpheios-client-adapters": "<rootDir>/node_modules/alpheios-core/packages/client-adapters/dist/alpheios-client-adapters.min.js",
"alpheios-data-models": "<rootDir>/node_modules/alpheios-core/packages/data-models/dist/alpheios-data-models.js",
"alpheios-l10n": "<rootDir>/node_modules/alpheios-core/packages/l10n/dist/alpheios-l10n.js",
"vue-multiselect": "<rootDir>/node_modules/vue-multiselect/dist/vue-multiselect.umd.js"
},
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "@vue/vue3-jest",
"^.+\\.html$": "html-loader-jest",
".*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/fileTransform.js",
"\\.(css|less|sass|scss)$": "<rootDir>/styleMock.js",
"^.*\\.svg$": "<rootDir>/svgTransform.js"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!uuid/)",
"<rootDir>/node_modules/(?!vue-multiselect/)"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"collectCoverageFrom": [
"src/**/*.{js,vue}",
"!src/index.js",
"!src/lib/tokenizers/alpheios-remote-tokenizer.js",
"!src/lib/download/*.js"
]
}
}