-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
106 lines (106 loc) · 3.63 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "web-synth",
"version": "0.1.0",
"description": "A browser-based audio synthesis and experimentation platform powered by WebAssembly and WebAudio",
"main": "src/index.tsx",
"repository": "https://github.com/Ameobea/web-synth",
"author": "Casey Primozic <casey@cprimozic.net>",
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/d3": "^7.4.3",
"@types/downloadjs": "^1.4.6",
"@types/node": "^22.9.3",
"@types/react-window": "^1.8.8",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@webpack-cli/serve": "^2.0.5",
"css-loader": "^7.1",
"cypress": "^13.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"file-loader": "^6.2.0",
"globals": "^15.12.0",
"handlebars": "^4.7.8",
"handlebars-loader": "^1.7.3",
"html-webpack-plugin": "^5.6",
"http-server": "^14.1.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.3.2",
"style-loader": "^4.0.0",
"svelte-loader": "^3.2.4",
"svelte-preprocess": "^6.0.3",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1"
},
"scripts": {
"start": "webpack serve",
"build": "rm -rf dist/* && NODE_OPTIONS=--experimental-worker BACKEND_BASE_URL=\"https://web-synth-api.ameo.design\" webpack --config webpack.prod.js && cp -r ./public/* ./dist",
"build-headless": "rm -rf dist/headless/* && NODE_OPTIONS=--experimental-worker BACKEND_BASE_URL=\"https://web-synth-api.ameo.design\" webpack --config webpack.headless.js && cp -r ./public/* ./dist/headless",
"lint": "eslint \"./src/**/*.@(ts|tsx|js|jsx)\"",
"typecheck": "tsc --noEmit",
"prettier": "prettier --write \"src/**/*.{ts,js,tsx}\"",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome",
"cypress:serve": "http-server dist -p 9000 -P http://127.0.0.1:9000? -c-1"
},
"dependencies": {
"@pixi/app": "^7.4.2",
"@pixi/core": "^7.4.2",
"@pixi/display": "^7.4.2",
"@pixi/events": "^7.4.2",
"@pixi/extensions": "^7.4.2",
"@pixi/graphics": "^7.4.2",
"@pixi/mixin-cache-as-bitmap": "^7.4.2",
"@pixi/sprite": "^7.4.2",
"@pixi/text": "^7.4.2",
"@reduxjs/toolkit": "^2.3.0",
"@sentry/react": "^8.40.0",
"@types/ramda": "^0.30.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-redux": "^7.1.34",
"@types/webmidi": "^2.1.0",
"ace-builds": "^1.36",
"chartist": "^1.3.0",
"comlink": "^4.4.2",
"d3": "^7.9.0",
"d3-scale-chromatic": "^3.1.0",
"dexie": "^4.0.10",
"downloadjs": "^1.4.7",
"funfix-core": "^7.0.1",
"immutable": "^4.3.7",
"jantix": "^0.3.0",
"litegraph.js": "^0.7.18",
"numbro": "^2.5.0",
"path-browserify": "^1.0.1",
"ramda": "^0.30.1",
"react": "18.3.1",
"react-ace": "^12.0.0",
"react-control-panel": ">=0.12.5",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.3.1",
"react-piano": "^3.1.3",
"react-query": "^3.39.3",
"react-redux": "^9.1.2",
"react-tippy": "^1.4.0",
"react-window": "^1.8.10",
"redux": "^5.0.1",
"reselect": "^5.1.1",
"showdown": "^2.1.0",
"showdown-xss-filter": "^0.2.0",
"svelte": "^4.2.19",
"svelte-french-toast": "^1.2.0",
"svelte-loading-spinners": "^0.3.6"
}
}