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

65 lines
1.5 KiB
JSON
Raw Normal View History

2021-08-12 20:33:02 +02:00
{
2021-08-13 13:00:31 +02:00
"name": "@fosscord/util",
2021-08-17 18:51:17 +02:00
"version": "1.0.0",
2021-08-12 20:33:02 +02:00
"description": "Utility functions for the all server repositories",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
2021-08-24 16:35:39 +02:00
"start": "npm run build && node dist/",
"test": "npm run build && jest",
2021-09-04 11:32:11 +02:00
"postinstall": "npm run build",
2021-08-29 00:03:58 +02:00
"build": "npx tsc -b ."
2021-08-12 20:33:02 +02:00
},
"repository": {
"type": "git",
2021-09-23 16:03:50 +02:00
"url": "git+https://github.com/fosscord/fosscord-server.git"
2021-08-12 20:33:02 +02:00
},
"keywords": [
"discord",
"fosscord",
2021-09-23 16:03:50 +02:00
"fosscord-server",
2021-08-12 20:33:02 +02:00
"discord open source",
"discord-open-source"
],
"author": "Fosscord",
"license": "GPLV3",
"bugs": {
2021-09-23 16:03:50 +02:00
"url": "https://github.com/fosscord/fosscord-server/issues"
2021-08-12 20:33:02 +02:00
},
"homepage": "https://docs.fosscord.com/",
2021-08-15 13:53:21 +02:00
"devDependencies": {
2021-08-13 19:20:03 +02:00
"@types/amqplib": "^0.8.1",
2021-08-12 20:33:02 +02:00
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose-autopopulate": "^0.10.1",
2021-09-19 19:05:26 +02:00
"@types/multer": "^1.4.7",
2021-08-13 19:20:03 +02:00
"@types/node": "^14.17.9",
2021-08-23 03:52:14 +02:00
"@types/node-fetch": "^2.5.12",
"jest": "^27.0.6"
2021-08-15 13:53:21 +02:00
},
"dependencies": {
2021-08-23 03:52:14 +02:00
"ajv": "^8.6.2",
2021-08-15 00:58:53 +02:00
"amqplib": "^0.8.0",
2021-08-22 12:41:21 +02:00
"class-validator": "^0.13.1",
2021-08-12 20:33:02 +02:00
"dot-prop": "^6.0.1",
"env-paths": "^2.2.1",
"jsonwebtoken": "^8.5.1",
2021-08-29 00:03:58 +02:00
"lambert-server": "^1.2.10",
2021-09-03 03:38:40 +02:00
"missing-native-js-functions": "^1.2.15",
2021-09-19 19:05:26 +02:00
"multer": "^1.4.3",
2021-08-15 00:58:53 +02:00
"node-fetch": "^2.6.1",
2021-08-26 00:22:26 +02:00
"patch-package": "^6.4.7",
2021-08-29 00:03:58 +02:00
"pg": "^8.7.1",
2021-08-21 16:47:22 +02:00
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"tsconfig-paths": "^3.11.0",
2021-08-21 16:47:22 +02:00
"typeorm": "^0.2.37",
2021-08-31 17:54:09 +02:00
"typescript": "^4.4.2",
2021-08-26 00:22:26 +02:00
"typescript-json-schema": "^0.50.1"
2021-08-24 16:35:39 +02:00
},
"jest": {
"setupFilesAfterEnv": [
2021-08-26 02:07:16 +02:00
"./tests/setupJest.js"
2021-08-24 16:35:39 +02:00
]
2021-08-12 20:33:02 +02:00
}
}