-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.18 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "dsssp-demo",
"type": "module",
"private": false,
"version": "0.4.0",
"author": "Oleksiy Strelets",
"license": "AGPL-3.0-only",
"homepage": "https://dsssp.io",
"description": "Demo Project of the DSSSP: React Library of Audio Processing and Visualization",
"funding": "https://github.com/numberonebot/dsssp?sponsor=1",
"bugs": {
"url": "https://github.com/numberonebot/dsssp-demo/issues"
},
"keywords": [
"react",
"react-components",
"ui-library",
"svg",
"chart",
"graph",
"visualization",
"dsp",
"signal-processing",
"digital-signal-processing",
"web-audio",
"audio",
"sound",
"filters",
"effects",
"spectrum",
"waveform",
"processing",
"engineering"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:github": "vite build --mode github",
"build:landing": "vite build --mode landing",
"preview": "vite preview --mode github",
"deploy:github": "gh-pages -d dist",
"lint": "tsc && eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"dsssp": "^0.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^5.0.0",
"react-router-dom": "^7.1.3"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/node": "^22.10.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"gh-pages": "^6.3.0",
"globals": "^15.14.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vite-plugin-svgr": "^4.3.0"
}
}