1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 09:41:35 +02:00
server/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2020-11-28 19:31:04 +01:00
{
2021-01-01 22:26:20 +01:00
"name": "discord-server-opensource",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2021-02-03 14:49:13 +01:00
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node dist/",
"build": "tsc -b ."
2021-01-01 22:26:20 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trenite/discord-server-opensource.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Trenite/discord-server-opensource/issues"
},
"homepage": "https://github.com/Trenite/discord-server-opensource#readme",
"dependencies": {
2021-02-01 21:49:01 +01:00
"bcrypt": "^5.0.0",
2021-02-02 00:51:00 +01:00
"body-parser": "^1.19.0",
2021-01-01 22:26:20 +01:00
"express": "^4.17.1",
2021-01-30 19:58:15 +01:00
"express-validator": "^6.9.2",
2021-02-01 21:49:01 +01:00
"i18next": "^19.8.5",
"i18next-http-middleware": "^3.1.0",
2021-02-02 00:51:00 +01:00
"i18next-node-fs-backend": "^2.1.3",
2021-01-30 19:58:15 +01:00
"jsonwebtoken": "^8.5.1",
2021-02-01 21:49:01 +01:00
"lambert-db": "^1.1.3",
2021-02-02 00:51:00 +01:00
"lambert-server": "^1.0.10",
"missing-native-js-functions": "^1.2.0",
2021-02-03 18:15:15 +01:00
"node-fetch": "^2.6.1"
2021-01-01 22:26:20 +01:00
},
"devDependencies": {
2021-02-03 18:15:15 +01:00
"@types/express": "^4.17.9",
"@types/node-fetch": "^2.5.7",
2021-02-01 21:49:01 +01:00
"@types/bcrypt": "^3.0.0",
2021-02-02 00:51:00 +01:00
"@types/i18next-node-fs-backend": "^2.1.0",
2021-01-30 19:58:15 +01:00
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.22",
"ts-node": "^9.1.1",
2021-01-01 22:26:20 +01:00
"typescript": "^4.1.2"
}
2020-11-28 19:31:04 +01:00
}