-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
70 lines (70 loc) · 2.39 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
{
"name": "my-video",
"version": "1.0.0",
"description": "My Remotion video",
"scripts": {
"start": "remotion preview",
"build": "remotion render FirstVideo out/video.mp4",
"buildForTestEncoding": "remotion render TestEncoding out/testEncoding.mp4",
"buildTransitionSpace": "remotion render TransitionSpace public/video/transition-space-yukkuri.mp4",
"upgrade": "remotion upgrade",
"test": "eslint src --ext ts,tsx,js,jsx && tsc",
"yukkuri": "ts-node test-yukkuri.ts",
"server": "ts-node server.ts",
"generate:yukkuri-voice:force": "ts-node scripts/generateYukkuriVoiceFiles.ts force",
"generate:yukkuri-voice:watch": "nodemon --watch yukkuriVoices.ts scripts/generateYukkuriVoiceFiles.ts",
"generate:yukkuri-voice-for-tuning": "ts-node scripts/generateYukkuriForTuning.ts",
"generate:yukkuri-voice-for-tuning:watch": "nodemon --watch scripts/generateYukkuriForTuning.ts scripts/generateYukkuriForTuning.ts",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {},
"license": "UNLICENSED",
"devDependencies": {
"@babel/core": "^7.20.5",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@swc/core": "^1.3.21",
"@swc/helpers": "^0.4.14",
"@types/express": "^4.17.14",
"@types/fs-extra": "^9.0.13",
"@types/react": "^18.0.6",
"@types/uuid": "^9.0.0",
"@types/web": "^0.0.61",
"babel-loader": "^8.3.0",
"eslint": "^8.14.0",
"fs-extra": "^11.1.0",
"get-audio-duration": "^3.1.1",
"nodemon": "^2.0.20",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.11",
"ts-node": "^10.9.1",
"typescript": "^4.6.3",
"uuid": "^9.0.0"
},
"dependencies": {
"@remotion/cli": "^3.3.25",
"@remotion/eslint-config": "^3.3.25",
"@remotion/google-fonts": "^3.3.25",
"@remotion/lambda": "3.3.25",
"@remotion/media-utils": "^3.3.25",
"@types/meyda": "^4.3.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"get-video-duration": "^4.1.0",
"meyda": "^5.5.1",
"node-aqkanji2koe": "^1.0.1",
"node-aquestalk10": "^1.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remotion": "^3.3.25",
"web-audio-api": "^0.2.2",
"web-audio-engine": "^0.13.4"
}
}