-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.31 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
84
{
"name": "linx-electron",
"version": "0.0.0",
"description": "Mix builder",
"main": "main.js",
"scripts": {
"start": "electron .",
"start:dev": "NODE_ENV=development node dev",
"test:lint": "NODE_ENV=test standard",
"test:lint:fix": "NODE_ENV=test standard --fix",
"test:unit": "NODE_ENV=test ava",
"test": "npm-run-all -p test:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linxmix/linx-electron.git"
},
"author": "wolfbiter",
"license": "ISC",
"bugs": {
"url": "https://github.com/linxmix/linx-electron/issues"
},
"homepage": "https://github.com/linxmix/linx-electron#readme",
"dependencies": {
"audio-worker-node": "^0.4.0",
"babel-code-frame": "^6.16.0",
"babel-messages": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"classnames": "^2.2.5",
"core-js": "^2.4.1",
"d3": "^4.6.0",
"debug": "^2.3.3",
"electron": "^1.4.7",
"fela": "^6.0.5",
"globals": "^9.14.0",
"insert-css": "^2.0.0",
"invariant": "^2.2.2",
"jsmediatags": "^3.8.1",
"keymaster": "^1.6.2",
"lodash": "^4.17.2",
"npm-run-all": "^3.1.1",
"pify": "^2.3.0",
"react": "^15.4.0",
"react-dnd": "^2.2.4",
"react-dnd-html5-backend": "^2.2.4",
"react-dnd-mouse-backend": "^0.1.1",
"react-dnd-multi-backend": "linxmix/react-dnd-multi-backend#master",
"react-dom": "^15.4.0",
"react-fela": "^6.1.0",
"react-file-drop": "^0.1.8",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"react-table": "^4.4.1",
"recorderjs": "github:linxmix/recorderjs#master",
"redux": "^3.6.0",
"redux-actions": "^1.1.0",
"redux-logger": "^2.7.4",
"redux-loop": "^4.3.3",
"reselect": "^2.5.4",
"tunajs": "^1.0.0",
"uuid": "^3.0.1",
"virtual-audio-graph": "github:linxmix/virtual-audio-graph#master"
},
"devDependencies": {
"ava": "^0.17.0",
"chokidar": "^1.6.1",
"electron-connect": "^0.6.1",
"standard": "^8.6.0"
},
"ava": {
"files": [
"./**/*.test.js",
"!./node_modules/**/*"
],
"require": [
"babel-register"
],
"babel": "inherit"
}
}