-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.03 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
{
"name": "webgpu-whisper",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"deploy:init": "npx concurrently --kill-others-on-fail \"npm ci\" \"npm ci --prefix infra\" && npm run deploy:bootstrap",
"deploy:bootstrap": "npm run bootstrap --prefix infra",
"deploy:website": "npm run build && npm run deploy:backend --prefix infra -- -c stackType=website",
"deploy:backend": "npm run deploy --prefix infra -- -c stackType=backend",
"destroy:website": "npm run destroy --prefix infra -- -c stackType=website",
"destroy:backend": "npm run destroy --prefix infra -- -c stackType=backend",
"clean": "rm -rf build dist infra/dist infra/cdk.out",
"preview": "vite preview"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.629.0",
"@generouted/react-router": "^1.19.6",
"@headlessui/react": "^2.1.1",
"@phosphor-icons/react": "^2.1.7",
"@xenova/transformers": "github:xenova/transformers.js#v3",
"amazon-ivs-web-broadcast": "^1.18.0",
"clsx": "^2.1.1",
"framer-motion": "^11.3.23",
"pretty-bytes": "^6.1.1",
"react": "^18.2.0",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.26.0",
"readline": "^1.3.0",
"tailwind-gradient-mask-image": "^1.2.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-themer": "^4.0.0"
},
"devDependencies": {
"@aws-sdk/credential-providers": "^3.629.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"@webgpu/types": "^0.1.44",
"autoprefixer": "^10.4.19",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"vite": "^5.4.6",
"vite-plugin-environment": "^1.1.3"
}
}