retropilot-server/package.json

62 lines
1.7 KiB
JSON
Raw Normal View History

2021-05-15 20:34:03 -06:00
{
"name": "retropilot-server",
"version": "1.0.0",
"description": "replacement for comma.ai backend and useradmin dashboard. can be combined with a modified cabana instance.",
"main": "server.js",
2022-01-12 08:02:30 -07:00
"type": "module",
2021-05-15 20:34:03 -06:00
"scripts": {
2021-05-22 10:33:28 -06:00
"test": "mocha",
2022-01-12 08:02:30 -07:00
"start": "node --es-module-specifier-resolution=node server.js",
2022-01-08 13:41:18 -07:00
"prod": "node server.js && node worker.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
2021-05-15 20:34:03 -06:00
},
"author": "",
"license": "ISC",
"dependencies": {
2022-01-06 14:36:31 -07:00
"@commaai/log_reader": "^0.9.0",
"@sendgrid/client": "^7.4.3",
2022-01-07 18:35:55 -07:00
"body-parser": "^1.19.1",
2021-05-22 10:33:28 -06:00
"chai": "^4.3.4",
"chai-http": "^4.3.0",
2021-10-25 15:56:40 -06:00
"cookie": "^0.4.1",
2021-05-15 20:34:03 -06:00
"cookie-parser": "^1.4.5",
2022-01-03 09:29:47 -07:00
"cookies": "^0.8.0",
2021-05-15 20:34:03 -06:00
"cors": "^2.8.5",
"crypto": "^1.0.1",
"directory-tree": "^2.2.9",
"esm": "^3.2.25",
2021-05-15 20:34:03 -06:00
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
2021-10-29 14:45:15 -06:00
"express-rate-limit": "^5.5.0",
2021-10-25 15:56:40 -06:00
"express-ws": "^5.0.2",
2021-05-15 20:34:03 -06:00
"fast-folder-size": "^1.3.0",
"ffprobe": "^1.1.2",
"ffprobe-static": "^3.0.0",
"file-chunked": "^1.0.4",
"htmlspecialchars": "^1.0.5",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0",
2021-05-22 10:33:28 -06:00
"mocha": "^8.4.0",
2021-05-15 20:34:03 -06:00
"multer": "^1.4.2",
"nodemailer": "^6.6.0",
2022-01-12 08:02:30 -07:00
"pg": "^8.7.1",
2021-05-15 20:34:03 -06:00
"proper-lockfile": "^4.1.2",
"sanitize": "^2.1.0",
"sequelize": "^6.6.5",
"sqlite": "^4.0.22",
2021-05-22 10:33:28 -06:00
"sqlite3": "^5.0.2",
2021-10-25 15:56:40 -06:00
"supertest": "^6.1.3",
2021-10-30 18:53:42 -06:00
"uuid": "^8.3.2",
2021-10-25 15:56:40 -06:00
"websocket": "^1.0.34",
2022-01-12 08:02:30 -07:00
"ws": "^8.2.3",
"yup": "^0.32.11"
2022-01-07 18:35:55 -07:00
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-floating-promise": "^1.0.2"
2021-05-15 20:34:03 -06:00
}
}