-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "webapp-midi-feathered",
"description": "Web MIDI API to feather MIDI loopback",
"homepage": "https://leegee.github.io/webapp-midi-feathered",
"repository": {
"url": "https://github.com/leegee/webapp-midi-feathered"
},
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"generate-pwa-assets": "pwa-assets-generator --preset minimal-2023 assets/logo.svg",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest --run",
"prepreview": "bun run build",
"preview": "vite preview",
"predeploy": "bun run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"jotai": "^2.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vitest": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"vite": "^5.1.0",
"vite-plugin-pwa": "^0.20.0"
}
}