-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.51 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
{
"name": "Siren",
"version": "0.6.0",
"productName": "Siren",
"private": true,
"homepage": "https://github.com/inceio/Siren",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"custom-react-scripts": "^0.2.2",
"electron-packager": "^12.1.0",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"gh-pages": "^1.2.0",
"mocha": "^5.2.0"
},
"dependencies": {
"abletonlink": "0.0.7",
"autogypi": "^0.2.2",
"axios": "^0.17.1",
"babel-plugin-styled-components": "^1.5.1",
"better-queue": "^3.8.7",
"codemirror": "^5.37.0",
"concurrently": "^3.5.1",
"electron": "^1.8.6",
"electron-dl": "^1.12.0",
"express": "^4.16.2",
"gl-react": "^3.15.0",
"gl-react-dom": "^3.15.0",
"history": "4.7.2",
"jsonfile": "^4.0.0",
"keymaster": "^1.6.2",
"korg-nano-kontrol": "^0.2.9",
"marked": "^0.3.6",
"mathjs": "^4.2.2",
"midi": "^0.9.5",
"midi-parser-js": "^3.1.4",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"nanotimer": "^0.3.15",
"nbind": "^0.3.14",
"node-gyp": "^3.6.2",
"osc": "^2.2.1",
"prismjs": "^1.14.0",
"promise.prototype.finally": "^3.0.0",
"prop-types": "^15.5.10",
"query-string": "5.0.0",
"react": "^16.3.2",
"react-app-rewire-mobx": "^1.0.8",
"react-app-rewired": "^1.5.2",
"react-codemirror2": "^3.0.7",
"react-contextmenu": "^2.9.2",
"react-dom": "^16.3.2",
"react-draggable": "^3.0.5",
"react-grid-layout": "^0.16.6",
"react-router-dom": "4.2.2",
"react-scripts": "^1.1.4",
"react-selectable": "^2.0.0",
"reactjs-popup": "^1.1.1",
"styled-components": "3.1.6",
"superagent": "^3.8.3",
"superagent-promise": "^1.1.0",
"supercolliderjs": "^0.14.2",
"tree-model": "^1.0.7",
"wait-on": "^2.1.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"buildelectron": "electron-packager . Siren --ignore=node_modules/electron-*",
"eject": "react-app-rewired eject",
"sirenc": "concurrently \"node server/start.js\" \"BROWSER=none react-app-rewired start\" \"wait-on http://localhost:3000 && electron main.js \"",
"electron": "electron main.js ",
"siren": "node server/start.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}