-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 886 Bytes
/
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
{
"name": "avb-surface",
"description": "An application that allows you to link your MOTU AVB mixer with a physical surface over HTTP",
"author": "Michaël Jacobs <[email protected]>",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"license": "MIT",
"dependencies": {
"midi": "^0.9.5",
"react": "^16.4.1",
"react-reconciler": "^0.11.0",
"redux": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"flow-bin": "^0.74.0",
"flow-typed": "^2.4.0",
"react-devtools-core": "^3.2.3"
},
"scripts": {
"build": "babel -d lib/ src/",
"flow": "flow check",
"prepublish": "yarn run build",
"start": "node ./lib/index.js"
},
"private": true
}