-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.69 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
48
49
50
51
52
53
54
{
"name": "bpm-counter",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@microsoft/applicationinsights-clickanalytics-js": "^3.4.1",
"@microsoft/applicationinsights-react-js": "^19.3.8",
"@microsoft/applicationinsights-web": "^3.4.1",
"audiomotion-analyzer": "^3.5.0",
"bpm-detective": "^2.0.5",
"loglevel": "^1.7.1",
"react": "^19.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "^19.0.0",
"react-ga4": "^3.0.1",
"react-router-dom": "^7.14.0",
"react-toastify": "^11.0.0",
"react-tooltip": "^5.30.0",
"realtime-bpm-analyzer": "^5.0.2",
"web-vitals": "^5.0.0"
},
"scripts": {
"start": "vite",
"build": "vite build && npm run build-sw",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview",
"startsecure": "vite --host --https",
"build-sw": "node sw-build.js && npx rollup -c",
"generate-test-audio": "node scripts/generate-test-audio.js",
"test:e2e": "npx playwright test",
"test:e2e:bpm": "npx playwright test --project=bpm-detection",
"fix-ssl": "npm audit fix --force"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.0.0",
"@vitejs/plugin-react": "^6.0.1",
"cross-env": "^7.0.3",
"jsdom": "^29.0.2",
"rollup": "^4.60.1",
"vite": "^8.0.8",
"vitest": "^4.1.4",
"workbox-build": "^7.0.0",
"workbox-recipes": "^7.4.0"
}
}