X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=package.json;h=f3f85574a63ce23e4fb30cf10391c90c0c5698c0;hb=8c4da34193ab5407e3989a76360f1d909c21dc76;hp=dfb43a763d180bff72223047bebef5c4aac2b929;hpb=55eee181cba2fd65b08fd176c518465cc9e2c61c;p=e-mobility-charging-stations-simulator.git diff --git a/package.json b/package.json index dfb43a76..f3f85574 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,9 @@ "name": "ev-simulator", "version": "1.0.0", "engines": { - "node": ">=13.14.0" + "node": "14.x.x" }, + "type": "module", "repository": { "type": "git", "url": "https://github.com/LucasBrazi06/ev-simulator.git" @@ -17,14 +18,14 @@ "url": "http://www.apache.org/licenses/LICENSE-2.0" } ], - "main": "src/index.js", + "main": "src/start.js", "scripts": { - "start": "node src/index.js", - "start:debug": "node --inspect-brk src/index.js", - "start:prof": "node --prof src/index.js", - "start:doctorprof": "clinic doctor -- node src/index.js", - "start:flameprof": "clinic flame -- node src/index.js", - "start:bubbleprof": "clinic bubbleprof -- node src/index.js", + "start": "node src/start.js", + "start:debug": "node --inspect src/start.js", + "start:prof": "node --prof src/start.js", + "start:doctorprof": "clinic doctor -- node src/start.js", + "start:flameprof": "clinic flame -- node src/start.js", + "start:bubbleprof": "clinic bubbleprof -- node src/start.js", "lint": "eslint src", "lint:fix": "eslint --fix src", "flow": "flow", @@ -38,23 +39,20 @@ "git:spush": "git push --recurse-submodules=on-demand" }, "dependencies": { - "uuid": "^7.0.3", - "winston": "^3.2.1", + "uuid": "^8.3.1", + "winston": "^3.3.3", "worker-threads-pool": "^2.0.0", - "ws": "^7.2.3" + "ws": "^7.3.1" }, "devDependencies": { "babel-eslint": "^10.1.0", - "clinic": "^5.0.1", - "eslint": "^6.8.0", - "eslint-config-esnext": "^4.0.0", + "clinic": "^7.0.0", + "eslint": "^7.12.1", "eslint-config-google": "^0.14.0", - "eslint-config-node": "^4.0.0", - "eslint-plugin-flowtype": "^4.7.0", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^4.2.1", - "flow-bin": "^0.123.0", - "flow-typed": "^3.1.0", + "eslint-config-node": "^4.1.0", + "eslint-plugin-flowtype": "^5.2.0", + "flow-bin": "^0.137.0", + "flow-typed": "^3.2.1", "npm-check": "^5.9.2" } }