Files
colanode/server/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2024-07-29 09:13:36 +02:00
{
"name": "neuron-server",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
2024-07-29 09:13:36 +02:00
"start": "node dist/index.js",
2024-08-02 23:16:29 +02:00
"dev": "node -r ts-node/register -r tsconfig-paths/register --env-file .env src/index.ts",
"format": "prettier --write \"{src,test}/**/*.{js,ts}\""
2024-07-29 09:13:36 +02:00
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
2024-10-07 16:26:03 +02:00
"@types/cors": "^2.8.17",
2024-07-29 09:13:36 +02:00
"@types/express": "^4.17.21",
2024-09-29 23:21:29 +02:00
"@types/jsonwebtoken": "^9.0.7",
2024-10-26 09:01:59 +02:00
"@types/lodash": "^4.17.12",
2024-10-07 16:26:03 +02:00
"@types/multer": "^1.4.12",
2024-10-20 00:11:20 +02:00
"@types/node": "^22.7.7",
2024-09-15 00:10:21 +02:00
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.12",
2024-09-15 00:10:21 +02:00
"concurrently": "^9.0.1",
2024-09-29 23:21:29 +02:00
"nodemon": "^3.1.7",
2024-08-02 23:16:29 +02:00
"prettier": "^3.3.3",
2024-07-29 09:13:36 +02:00
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
2024-10-10 14:13:54 +02:00
"typescript": "^5.6.3"
2024-07-29 09:13:36 +02:00
},
"dependencies": {
2024-10-20 00:11:20 +02:00
"@aws-sdk/client-s3": "^3.675.0",
"@aws-sdk/s3-request-presigner": "^3.675.0",
2024-09-15 00:10:21 +02:00
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
2024-10-20 00:11:20 +02:00
"bullmq": "^5.21.1",
"cors": "^2.8.5",
2024-10-10 18:18:59 +02:00
"express": "^4.21.1",
"js-base64": "^3.7.7",
2024-10-04 18:21:16 +02:00
"js-sha256": "^0.11.0",
2024-08-08 12:25:02 +02:00
"kafkajs": "^2.2.4",
"kysely": "^0.27.4",
2024-10-26 09:01:59 +02:00
"lodash": "^4.17.21",
2024-10-07 16:26:03 +02:00
"multer": "^1.4.5-lts.1",
2024-09-29 23:21:29 +02:00
"pg": "^8.13.0",
"postgres": "^3.4.4",
"redis": "^4.7.0",
2024-10-07 16:26:03 +02:00
"sharp": "^0.33.5",
"ulid": "^2.3.0",
"ws": "^8.18.0",
2024-10-14 19:30:42 +02:00
"yjs": "^13.6.20"
2024-07-29 09:13:36 +02:00
}
}