-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
{
"name": "murmura",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy": "npx convex deploy --cmd 'npm run build'",
"generate-audio": "tsx tools/tts-generator.ts",
"check-i18n": "tsx tools/check-i18n.ts",
"find-missing-i18n": "tsx tools/find-missing-i18n-keys.ts",
"setup-kokoro": "./tools/setup-kokoro.sh"
},
"dependencies": {
"@convex-dev/auth": "^0.0.90",
"convex": "^1.31.4",
"edge-tts-universal": "^1.3.3",
"jszip": "^3.10.1",
"kokoro-js": "^1.2.1",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"wanakana": "^5.0.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jszip": "^3.4.0",
"@types/node": "20.19.29",
"@types/react": "^19.2.10",
"@types/react-dom": "^19",
"axios": "^1.7.9",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"eslint": "^9",
"eslint-config-next": "^16.1.6",
"fs-extra": "^11.2.0",
"glob": "^13.0.0",
"png-to-ico": "^3.0.1",
"tsx": "^4.19.2",
"typescript": "^5"
}
}