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

33 lines
804 B
JSON
Raw Normal View History

{
2021-02-05 16:58:50 +01:00
"name": "discord-gateway",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2021-04-06 23:24:34 +02:00
"start": "npm run build:util && npm run build && node dist/",
2021-02-05 16:58:50 +01:00
"build": "tsc -b .",
2021-04-06 23:24:34 +02:00
"build:util": "tsc -b ./node_modules/fosscord-server-util/"
2021-02-05 16:58:50 +01:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2021-02-16 13:30:54 +01:00
"dotenv": "^8.2.0",
2021-02-05 16:58:50 +01:00
"erlpack": "^0.1.3",
2021-02-10 14:37:16 +01:00
"fosscord-server-util": "github:fosscord/fosscord-server-util",
2021-02-05 16:58:50 +01:00
"jsonwebtoken": "^8.5.1",
2021-02-10 14:37:16 +01:00
"lambert-db": "^1.1.8",
2021-04-06 14:15:13 +02:00
"lambert-server": "^1.1.7",
"missing-native-js-functions": "^1.2.3",
2021-02-05 16:58:50 +01:00
"node-fetch": "^2.6.1",
"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": {
"@types/jsonwebtoken": "^8.5.0",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0"
}
}