-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "wasm-synth",
"version": "0.0.1",
"description": "A synthesizer built from scratch in C++ and made available on the web through WebAssembly.",
"scripts": {
"build:cpp": "./scripts/build.sh",
"build:js": "rollup -c",
"build": "npm run build:cpp && npm run build:js",
"watch:js": "rollup -c -w",
"watch:cpp": "npm run build:cpp && npm-watch",
"watch": "npm-run-all --parallel watch:js watch:cpp",
"dev": "npm-run-all --parallel serve watch",
"serve": "serve public"
},
"watch": {
"build:cpp": {
"patterns": [
"src/cpp",
"src/js/worklets"
],
"extensions": "cc,h,js"
}
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@rollup/plugin-url": "^4.0.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0",
"rollup": "^1.16.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.0.0",
"serve": "^11.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimDaub/wasm-synth.git"
},
"keywords": [
"synthesizer",
"wasm",
"javascript",
"music"
],
"author": "Tim Daubenschuetz <tim.daubenschuetz@gmail.com>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/TimDaub/wasm-synth/issues"
},
"homepage": "https://github.com/TimDaub/wasm-synth#readme",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"dygraphs": "^2.1.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-envelope-graph": "^0.1.4",
"react-piano": "^3.1.3",
"react-simple-knob": "0.0.6",
"react-styled-flexbox": "^2.0.0",
"standardized-audio-context": "^24.1.8",
"styled-components": "^4.4.1"
}
}