-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "audio-sample-sequencer",
"version": "1.0.0",
"description": "Educational Audio Sample Step Sequencer with Mixer",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"build-dev": "webpack --watch",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sonoalex/audio-sample-sequencer.git"
},
"author": "Alex Beis",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonoalex/audio-sample-sequencer/issues"
},
"engines": {
"node": "14.x"
},
"homepage": "https://github.com/sonoalex/audio-sample-sequencer#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"mini-css-extract-plugin": "^0.9.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/runtime": "^7.9.2",
"benchmark": "^2.1.4",
"css-loader": "^3.5.3",
"express": "^4.17.3",
"jquery": "^3.5.1",
"jquery-knob": "^1.2.11",
"socket.io": "^4.4.1",
"standardized-audio-context": "^24.1.26",
"style-loader": "^1.2.1",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^3.0.0",
"webpd": "^0.4.2"
}
}