forked from lasselukkari/DuinoDCX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.1 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
85
86
87
88
89
90
{
"name": "DuinoDCX",
"description": "Standalone WIFI remote controller for the Behringer Ultradrive Pro (DCX2496)",
"version": "0.0.7",
"author": "Lasse Lukkari <[email protected]>",
"contributors": [
"Ilkka Huhtakallio"
],
"repository": "github:lasselukkari/DuinoDCX",
"license": "MIT",
"devDependencies": {
"awot-scripts": "0.0.13",
"eslint-config-xo-react": "^0.17.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.5.1",
"prettier": "^1.10.2",
"react-scripts": "1.1.4",
"xo": "^0.22.0"
},
"dependencies": {
"bootswatch": "^3.3.7",
"express": "^4.16.2",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"mathjs": "^3.16.4",
"rc-slider": "^8.6.3",
"rc-tooltip": "^3.7.3",
"react": "^16.4.2",
"react-block-ui": "^1.1.1",
"react-bootstrap": "^0.32.3",
"react-dom": "^16.4.2",
"react-dropzone": "^4.3.0",
"react-spinkit": "^3.0.0",
"react-toastify": "^3.2.2",
"react-window-size": "^1.0.1",
"recharts": "^1.0.0-alpha.6",
"superagent": "^3.8.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dist": "awot-static",
"lint": "xo --fix"
},
"xo": {
"extends": "xo-react",
"globals": [
"afterAll",
"afterEach",
"beforeAll",
"beforeEach",
"expect",
"jest",
"test",
"describe",
"it",
"document",
"fetch",
"window",
"FormData",
"URLSearchParams",
"atob",
"btoa"
],
"plugins": [
"babel"
],
"parser": "babel-eslint",
"space": true,
"prettier": true,
"rules": {
"react/prop-types": "off",
"react/jsx-pascal-case": "off",
"unicorn/filename-case": "off",
"react/forbid-component-props": "off"
}
},
"awot-static": {
"sources": "./build",
"indexFile": "index.html",
"sketchDir": "./DuinoDCX",
"exclude": [
"*.map",
"service-worker.js"
]
},
"proxy": "http://192.168.1.72"
}