-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.26 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
{
"name": "the-tuul",
"version": "0.11.1",
"description": "Create a decent karaoke video from any song in about 10 minutes.",
"main": "index.ts",
"scripts": {
"test": "jest",
"build": "webpack --config webpack.prod.js --progress",
"build-dev": "webpack --config webpack.dev.js --progress",
"watch": "webpack --config webpack.dev.js --watch --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/incidentist/karaoke_video_tools.git"
},
"keywords": [
"karaoke"
],
"author": "Dan Kurtz <andfurthermore@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/incidentist/karaoke_video_tools/issues"
},
"homepage": "https://github.com/incidentist/karaoke_video_tools#readme",
"dependencies": {
"@ffmpeg/core": "^0.11.0",
"@ffmpeg/ffmpeg": "0.11.6",
"@ffmpeg/util": "^0.12.1",
"@fortawesome/fontawesome-free": "^6.5.1",
"audiobuffer-to-wav": "^1.0.0",
"buefy": "^0.9.25",
"jszip": "^3.10.1",
"libass-wasm": "^4.1.0",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"vue": "^2.7.14"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.195",
"@vue/test-utils": "^1.3.6",
"@vue/vue2-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.25.0",
"prettier": "^3.1.1",
"style-loader": "^3.3.0",
"ts-jest": "^29.2.3",
"ts-loader": "^9.3.1",
"typescript": "^5.1.3",
"vue-demi": "^0.14.5",
"vue-loader": "^15.10.0",
"webpack": "^5.56.0",
"webpack-bundle-tracker": "^2.0.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.8.0"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/frontend/testSetup.ts"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/frontend/$1"
},
"moduleFileExtensions": [
"js",
"json",
"vue",
"ts"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "@vue/vue2-jest",
"^.+\\.tsx?$": "ts-jest"
}
}
}