mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-25 14:45:54 -05:00
92c532db3e
Looks like I basically had to do this to keep up. With nodejs version 12 (current LTS), the version of fsevents I installed wouldn't build. A "yarn upgrade" by itself resulted in a new problem as described in #69. Conversely, the new versions don't install with nodejs 8. So I bit the bullet and upgraded all the dev dependency stuff and the nodejs at once. nodejs 10 seems capable of running either the old or new, fwiw. I'm a little sad that this seems to have made the UI bundle 5% larger. Before, "yarn build" said 350 KiB. After, 369 KiB. A little bit in several places. For example, jquery-ui.bundle.js went from 156 KiB (in 2 chunks) to 160 KiB (in 1 chunk) for some reason.
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"author": "Scott Lamb <slamb@slamb.org>",
|
|
"bugs": {
|
|
"url": "https://github.com/scottlamb/moonfire-nvr/issues"
|
|
},
|
|
"scripts": {
|
|
"start": "webpack-dev-server --mode development --config webpack/dev.config.js --progress",
|
|
"build": "webpack --mode production --config webpack/prod.config.js"
|
|
},
|
|
"dependencies": {
|
|
"jquery": "^3.2.1",
|
|
"jquery-ui": "^1.12.1",
|
|
"moment-timezone": "^0.5.13"
|
|
},
|
|
"homepage": "https://github.com/scottlamb/moonfire-nvr",
|
|
"license": "GPL-3.0",
|
|
"name": "moonfire-nvr",
|
|
"repository": "scottlamb/moonfire-nvr",
|
|
"version": "0.1.0",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.8.6",
|
|
"@babel/preset-env": "^7.8.6",
|
|
"babel-loader": "^8.0.6",
|
|
"babel-plugin-transform-imports": "^2.0.0",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"compression-webpack-plugin": "^3.1.0",
|
|
"css-loader": "^3.4.2",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"file-loader": "^5.1.0",
|
|
"html-loader": "^0.5.5",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"prettier": "1.19.1",
|
|
"style-loader": "^1.1.3",
|
|
"webpack": "^4.41.6",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-dev-server": "^3.10.3",
|
|
"webpack-merge": "^4.2.2"
|
|
}
|
|
}
|