-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.68 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
{
"name": "edge-tts-server",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"repository": "[email protected]:HerbertHe/edge-tts-server.git",
"author": "HerbertHe <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"dev": "yarn back:dev & yarn serve:dev & yarn front:dev",
"build": "NODE_ENV=production yarn back:build && yarn front:build",
"docker:build": "docker buildx build -t herberthe0229/edge-tts-server:latest --platform=linux/arm64 . --load",
"docker:push": "docker buildx build -t herberthe0229/edge-tts-server:dev --platform=linux/arm64,linux/amd64,linux/arm/v8,linux/arm/v7 . --push",
"py:venv": "python3 -m venv .venv",
"py:active": "source .venv/bin/activate",
"py:de": "deactivate",
"front:dev": "vite",
"front:build": "tsc && vite build",
"front:preview": "vite preview",
"back:dev": "tsup --watch",
"back:build": "tsup",
"serve:dev": "nodemon dist/index.js",
"serve": "node dist/index.js"
},
"devDependencies": {
"@iconify-json/mdi": "^1.1.66",
"@iconify/tailwind": "^0.1.4",
"@types/file-saver": "^2.0.7",
"@types/koa": "^2.15.0",
"@types/koa-router": "^7.4.8",
"@types/koa-static": "^4.0.4",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"autoprefixer": "^10.4.19",
"nodemon": "^3.1.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"tsup": "^8.0.2",
"typescript": "^5.4.4",
"vite": "^5.2.8"
},
"dependencies": {
"file-saver": "^2.0.5",
"immer": "^10.0.4",
"koa": "^2.15.2",
"koa-router": "^12.0.1",
"koa-static": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"use-immer": "^0.9.0"
}
}