-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.72 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
{
"name": "audio-converter",
"private": true,
"version": "0.2.12",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest --watch",
"e2e-cli": "npx playwright test",
"e2e": "npx playwright test --ui",
"build": "npm run copy-ffmpeg && vite build",
"build-preview": "npm run copy-ffmpeg && vite build --mode preview && npm run preview",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.check.json",
"copy-ffmpeg": "mkdir -p ./public/lib/ffmpeg/core/dist && cp ./node_modules/@ffmpeg/core-mt/dist/esm/* ./public/lib/ffmpeg/core/dist",
"deploy": "sh deploy.sh > deploy.log 2>&1"
},
"devDependencies": {
"@playpilot/svelte-htm": "^1.0.1",
"@playwright/test": "^1.43.1",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/svelte": "^4.2.3",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/svelte": "^5.0.4",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"autoprefixer": "^10.4.19",
"htm": "^3.1.1",
"jsdom": "^24.0.0",
"lodash": "^4.17.21",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"sass": "^1.75.0",
"svelte": "^4.2.15",
"svelte-check": "^3.6.9",
"svelte-spa-router": "^4.0.1",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"vite": "5.2.10",
"vite-plugin-pwa": "^0.19.8",
"vitest": "^1.5.2"
},
"dependencies": {
"@ffmpeg/core-mt": "^0.12.6",
"@ffmpeg/ffmpeg": "^0.12.10",
"@ffmpeg/util": "^0.12.1"
}
}