-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "padsynth-js",
"version": "0.0.1",
"description": "PADsynth additive synthesis using the Web Audio and Web MIDI API.",
"main": "app.js",
"scripts": {
"start": "webpack",
"prod": "webpack --optimize-minimize --optimize-dedupe",
"dev": "webpack-dev-server --progress --colors --port 9091 --inline --hot",
"deploy": "git checkout master; git branch -D gh-pages; git checkout -b gh-pages; npm start; git add bundle.js; git commit -m'Deploy'; git push --force --set-upstream origin gh-pages; git checkout master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmontag/padsynth-js.git"
},
"keywords": [
"padsynth",
"additive synthesis",
"synth",
"synthesizer",
"midi",
"audio"
],
"author": "Matt Montag",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmontag/padsynth-js/issues"
},
"homepage": "https://github.com/mmontag/padsynth-js#readme",
"devDependencies": {
"json-loader": "^0.5.2",
"node-libs-browser": "^0.5.2",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0"
},
"dependencies": {
"angular": "^1.4.1",
"lodash": "^3.10.1",
"midifile": "^1.0.1",
"midiplayer": "0.0.2",
"mml-emitter": "git+https://github.com/mohayonao/mml-emitter.git#edd40ecf42141ca257c6cd8adc5073d570add1ee",
"ngstorage": "^0.3.6",
"npm": "^6.1.0",
"pixi.js": "^3.0.6"
}
}