2020-11-28 19:31:04 +01:00
{
2021-04-22 23:29:06 +02:00
"name" : "@fosscord/api" ,
2021-01-01 22:26:20 +01:00
"version" : "1.0.0" ,
2021-02-06 10:06:37 +01:00
"description" : "This repository contains the HTTP API Server" ,
2021-04-22 23:29:06 +02:00
"main" : "dist/Server.js" ,
"types" : "dist/Server.d.ts" ,
2021-01-01 22:26:20 +01:00
"scripts" : {
2021-03-30 15:39:00 +02:00
"test" : "jest" ,
"test:watch" : "jest --watch" ,
2021-05-22 22:55:45 +02:00
"start" : "npm run build && node dist/start" ,
2021-02-16 20:35:47 +01:00
"build" : "tsc -b ." ,
2021-07-28 00:55:59 +02:00
"build-docker" : "tsc -p tsconfig-docker.json" ,
2021-07-08 11:05:12 +02:00
"dev" : "tsnd --respawn src/start.ts" ,
2021-07-11 11:05:09 +02:00
"bundle:macos" : "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord-api.app' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js' && tar -czf 'fosscord-api-macos.app.tgz' 'fosscord-api.app'" ,
"bundle:linux" : "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js' && tar -czf 'fosscord-api-linux.tgz' 'fosscord'" ,
"bundle:windows" : "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord-api-windows.exe' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js'"
2021-01-01 22:26:20 +01:00
} ,
"repository" : {
"type" : "git" ,
2021-02-09 19:37:39 +01:00
"url" : "git+https://github.com/fosscord/fosscord-api.git"
2021-01-01 22:26:20 +01:00
} ,
2021-04-22 23:29:06 +02:00
"keywords" : [
"discord" ,
"fosscord" ,
"fosscord-api" ,
"discord open source" ,
"discord-open-source"
] ,
"author" : "Fosscord" ,
2021-01-01 22:26:20 +01:00
"license" : "ISC" ,
"bugs" : {
2021-02-09 19:37:39 +01:00
"url" : "https://github.com/fosscord/fosscord-api/issues"
2021-01-01 22:26:20 +01:00
} ,
2021-02-09 19:37:39 +01:00
"homepage" : "https://github.com/fosscord/fosscord-api#readme" ,
2021-01-01 22:26:20 +01:00
"dependencies" : {
2021-08-07 10:38:09 +02:00
"@fosscord/server-util" : "^1.3.37" ,
2021-03-30 15:39:00 +02:00
"@types/jest" : "^26.0.22" ,
2021-05-20 03:39:31 +02:00
"@types/json-schema" : "^7.0.7" ,
"ajv" : "^8.4.0" ,
"ajv-formats" : "^2.1.0" ,
"assert" : "^1.5.0" ,
"atomically" : "^1.7.0" ,
2021-05-22 22:55:45 +02:00
"bcrypt" : "^5.0.1" ,
2021-02-02 00:51:00 +01:00
"body-parser" : "^1.19.0" ,
2021-08-07 10:28:24 +02:00
"canvas" : "^2.8.0" ,
2021-05-28 22:40:34 +02:00
"cheerio" : "^1.0.0-rc.9" ,
2021-05-20 03:39:31 +02:00
"dot-prop" : "^6.0.1" ,
2021-02-16 13:30:53 +01:00
"dotenv" : "^8.2.0" ,
2021-05-20 03:39:31 +02:00
"env-paths" : "^2.2.1" ,
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-05-30 01:44:09 +02:00
"form-data" : "^3.0.0" ,
2021-02-01 21:49:01 +01:00
"i18next" : "^19.8.5" ,
2021-05-22 22:55:45 +02:00
"i18next-http-middleware" : "^3.1.3" ,
2021-02-02 00:51:00 +01:00
"i18next-node-fs-backend" : "^2.1.3" ,
2021-06-19 15:50:11 +02:00
"image-size" : "^1.0.0" ,
2021-01-30 19:58:15 +01:00
"jsonwebtoken" : "^8.5.1" ,
2021-07-18 19:49:10 +02:00
"lambert-server" : "^1.2.8" ,
2021-04-07 20:26:00 +02:00
"missing-native-js-functions" : "^1.2.6" ,
2021-04-06 23:23:20 +02:00
"mongoose" : "^5.12.3" ,
2021-04-09 14:00:17 +02:00
"mongoose-autopopulate" : "^0.12.3" ,
2021-02-14 19:01:41 +01:00
"mongoose-long" : "^0.3.2" ,
2021-06-28 18:43:50 +02:00
"multer" : "^1.4.2" ,
2021-07-01 11:16:13 +02:00
"node-fetch" : "^2.6.1" ,
"require_optional" : "^1.0.1"
2021-01-01 22:26:20 +01:00
} ,
"devDependencies" : {
2021-07-09 19:41:12 +02:00
"@types/bcrypt" : "^5.0.0" ,
2021-02-06 10:06:37 +01:00
"@types/express" : "^4.17.9" ,
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" ,
2021-03-08 18:40:37 +01:00
"@types/multer" : "^1.4.5" ,
2021-01-30 19:58:15 +01:00
"@types/node" : "^14.14.22" ,
2021-02-06 10:06:37 +01:00
"@types/node-fetch" : "^2.5.7" ,
2021-03-27 21:52:02 +01:00
"@zerollup/ts-transform-paths" : "^1.7.18" ,
2021-03-03 21:17:09 +01:00
"0x" : "^4.10.2" ,
2021-07-11 09:09:37 +02:00
"caxa" : "^2.1.0" ,
2021-03-30 15:39:00 +02:00
"jest" : "^26.6.3" ,
2021-07-10 18:05:11 +02:00
"saslprep" : "^1.0.3" ,
2021-01-30 19:58:15 +01:00
"ts-node" : "^9.1.1" ,
2021-04-25 23:35:19 +02:00
"ts-node-dev" : "^1.1.6" ,
2021-01-01 22:26:20 +01:00
"typescript" : "^4.1.2"
}
2020-11-28 19:31:04 +01:00
}