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

44 lines
1.1 KiB
JSON
Raw Normal View History

{
2021-08-13 12:57:51 +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-10-07 18:21:17 +02:00
"types": "src/index.ts",
2021-02-05 16:58:50 +01:00
"scripts": {
2021-10-02 15:12:47 +02:00
"postinstall": "npx ts-patch install -s",
2021-02-05 16:58:50 +01:00
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node dist/start.js",
2021-10-10 11:03:04 +02:00
"build": "npx tsc -p .",
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",
2021-08-15 13:53:21 +02:00
"devDependencies": {
"@types/amqplib": "^0.8.1",
"@types/jsonwebtoken": "^8.5.0",
2021-08-15 13:53:21 +02:00
"@types/node": "^14.17.9",
"@types/node-fetch": "^2.5.12",
2021-08-15 21:56:30 +02:00
"@types/ws": "^7.4.0",
2021-09-20 23:34:54 +02:00
"@zerollup/ts-transform-paths": "^1.7.18",
2021-08-15 13:53:21 +02:00
"ts-node-dev": "^1.1.6",
"ts-patch": "^1.4.4",
2021-08-15 13:53:21 +02:00
"typescript": "^4.2.3"
},
"dependencies": {
"@fosscord/util": "file:../util",
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-10-05 20:47:12 +02:00
"lambert-server": "^1.2.11",
2021-10-16 21:48:57 +02:00
"missing-native-js-functions": "^1.2.18",
2021-02-05 16:58:50 +01:00
"node-fetch": "^2.6.1",
2021-10-23 20:46:38 +02:00
"proxy-agent": "^5.0.0",
"typeorm": "^0.2.37",
"ws": "^7.4.2"
},
"optionalDependencies": {
"@yukikaze-bot/erlpack": "^1.0.1"
2021-02-05 16:58:50 +01:00
}
}