-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.26 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
{
"name": "osc2http",
"version": "1.0.0",
"description": "Express / React application to listen and convert OSC messages to interact with an HTTP API.",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"buildDev": "webpack --mode development --config webpack.server.config.js && webpack --mode development --config webpack.dev.config.js",
"buildProd": "webpack --mode production --config webpack.server.config.js && webpack --mode production --config webpack.prod.config.js",
"dev": "webpack -w --mode development --config webpack.server.config.js",
"serve": "node ./dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"electron": "^11.2.3",
"express": "^4.17.1",
"flatfile": "^2.0.0",
"material-table": "1.69.1",
"node-fetch": "^2.6.1",
"node-osc": "^5.2.2",
"prop-type": "0.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"engines": {
"node": ">=4.3.2"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"css-loader": "^5.0.2",
"eslint": "^7.19.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.22.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.6",
"nodemon-webpack-plugin": "^4.4.4",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"react-reconciler": "^0.26.1",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^2.5.2"
}
}