1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00
server/gateway/package.json

39 lines
940 B
JSON
Raw Normal View History

{
2021-04-22 23:37:03 +02:00
"name": "@fosscord/gateway",
2021-02-05 16:58:50 +01:00
"version": "1.0.0",
"description": "",
2021-05-31 00:51:54 +02:00
"main": "dist/index.js",
2021-02-05 16:58:50 +01:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2021-05-31 00:51:54 +02:00
"start": "npm run build && node dist/start.js",
2021-04-07 15:54:21 +02:00
"build": "npx tsc -b .",
2021-05-31 00:51:54 +02:00
"dev": "tsnd --respawn src/start.ts"
2021-02-05 16:58:50 +01:00
},
"keywords": [],
2021-04-22 23:37:03 +02:00
"author": "Fosscord",
2021-02-05 16:58:50 +01:00
"license": "ISC",
"dependencies": {
2021-08-12 16:47:52 +02:00
"@fosscord/server-util": "^1.3.51",
"ajv": "^8.5.0",
2021-08-12 16:47:52 +02:00
"amqplib": "^0.8.0",
2021-02-16 13:30:54 +01:00
"dotenv": "^8.2.0",
2021-02-05 16:58:50 +01:00
"jsonwebtoken": "^8.5.1",
2021-07-18 19:49:12 +02:00
"lambert-server": "^1.2.8",
"missing-native-js-functions": "^1.2.3",
2021-04-08 16:40:57 +02:00
"mongoose-autopopulate": "^0.12.3",
2021-02-05 16:58:50 +01:00
"node-fetch": "^2.6.1",
2021-04-07 15:54:21 +02:00
"typescript": "^4.2.3",
2021-02-05 16:58:50 +01:00
"uuid": "^8.3.2",
2021-04-07 15:48:17 +02:00
"ws": "^7.4.2"
2021-02-05 16:58:50 +01:00
},
"devDependencies": {
2021-08-12 16:47:52 +02:00
"@types/amqplib": "^0.8.1",
2021-02-05 16:58:50 +01:00
"@types/jsonwebtoken": "^8.5.0",
2021-04-08 16:40:57 +02:00
"@types/mongoose-autopopulate": "^0.10.1",
2021-02-05 16:58:50 +01:00
"@types/uuid": "^8.3.0",
2021-04-25 21:18:21 +02:00
"@types/ws": "^7.4.0",
2021-04-25 23:41:17 +02:00
"erlpack": "^0.1.3",
"ts-node-dev": "^1.1.6"
2021-02-05 16:58:50 +01:00
}
}