2021-08-13 12:58:18 +02:00
{
"name" : "@fosscord/server" ,
"version" : "1.0.0" ,
"description" : "" ,
"main" : "src/start.js" ,
"scripts" : {
2021-09-23 17:29:00 +02:00
"setup" : "cd ../util && npm --production=false i && cd ../api && npm --production=false i && cd ../cdn && npm --production=false i && cd ../gateway && npm --production=false i && npm install" ,
2021-08-29 16:58:53 +02:00
"build" : "npm run build:util && npm run build:api && npm run build:cdn && npm run build:gateway && npm run build:bundle" ,
2021-09-23 16:30:28 +02:00
"postinstall" : "ts-patch install -s" ,
2021-08-18 16:10:11 +02:00
"build:bundle" : "npx tsc -b ." ,
2021-08-29 16:58:53 +02:00
"build:util" : "cd ../util/ && npm run build" ,
2021-08-15 22:36:35 +02:00
"build:api" : "cd ../api/ && npm run build" ,
"build:cdn" : "cd ../cdn/ && npm run build" ,
"build:gateway" : "cd ../gateway/ && npm run build" ,
2021-09-13 00:17:56 +02:00
"start" : "npm run build && npm run start:bundle" ,
2021-09-18 01:50:20 +02:00
"start:bundle" : "node dist/start.js" ,
2021-08-13 12:58:18 +02:00
"test" : "echo \"Error: no test specified\" && exit 1"
} ,
"repository" : {
"type" : "git" ,
2021-08-13 13:18:45 +02:00
"url" : "git+https://github.com/fosscord/fosscord-server.git"
2021-08-13 12:58:18 +02:00
} ,
"keywords" : [ ] ,
"author" : "Fosscord" ,
"license" : "AGPLV3" ,
"bugs" : {
2021-08-13 13:18:45 +02:00
"url" : "https://github.com/fosscord/fosscord-server/issues"
2021-08-13 12:58:18 +02:00
} ,
2021-08-13 13:18:45 +02:00
"homepage" : "https://fosscord.com" ,
2021-08-15 13:53:21 +02:00
"devDependencies" : {
"@types/amqplib" : "^0.8.1" ,
2021-08-15 22:32:57 +02:00
"@types/async-exit-hook" : "^2.0.0" ,
2021-08-15 13:53:21 +02:00
"@types/bcrypt" : "^5.0.0" ,
"@types/express" : "^4.17.9" ,
"@types/i18next-node-fs-backend" : "^2.1.0" ,
"@types/jsonwebtoken" : "^8.5.0" ,
"@types/mongodb" : "^3.6.9" ,
"@types/mongoose-autopopulate" : "^0.10.1" ,
"@types/mongoose-lean-virtuals" : "^0.5.1" ,
2021-08-15 21:56:30 +02:00
"@types/multer" : "^1.4.5" ,
2021-10-04 21:01:08 +02:00
"@types/node" : "^14.17.20" ,
2021-08-15 21:56:30 +02:00
"@types/node-fetch" : "^2.5.7" ,
2021-08-15 22:32:57 +02:00
"@types/node-os-utils" : "^1.2.0" ,
2021-08-15 13:53:21 +02:00
"@types/uuid" : "^8.3.0" ,
"@types/ws" : "^7.4.0" ,
2021-08-15 21:56:30 +02:00
"@zerollup/ts-transform-paths" : "^1.7.18" ,
2021-09-19 18:45:09 +02:00
"ts-node" : "^10.2.1" ,
2021-09-20 23:34:54 +02:00
"ts-patch" : "^1.4.4" ,
2021-08-15 13:53:21 +02:00
"typescript" : "^4.3.5"
} ,
2021-08-13 20:53:29 +02:00
"dependencies" : {
2021-08-13 12:58:18 +02:00
"@fosscord/api" : "file:../api" ,
"@fosscord/cdn" : "file:../cdn" ,
"@fosscord/gateway" : "file:../gateway" ,
"@fosscord/util" : "file:../util" ,
"async-exit-hook" : "^2.0.1" ,
2021-10-04 21:01:08 +02:00
"chalk" : "^4.1.2" ,
2021-08-13 12:58:18 +02:00
"express" : "^4.17.1" ,
2021-09-03 03:38:40 +02:00
"missing-native-js-functions" : "^1.2.15" ,
2021-09-12 21:09:29 +02:00
"node-os-utils" : "^1.3.5" ,
"tsconfig-paths" : "^3.11.0"
2021-08-13 12:58:18 +02:00
}
}