-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 784 Bytes
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
{
"name": "radio-player",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit",
"test:coverage": "vitest run --coverage",
"test:e2e": "npx playwright test",
"build": "vite build",
"start": "vite preview --port 3000",
"vercel-build": "npm run build",
"dev": "vite"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"tailwindcss": "^4.0.14",
"xstate": "^5.32.4"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@statelyai/inspect": "^0.7.2",
"@tailwindcss/vite": "^4.3.2",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^6.0.3",
"vite": "^7.3.6",
"vitest": "^3.2.4"
}
}