2020-04-04 04:08:12 +02:00
|
|
|
{
|
|
|
|
"name": "workadventureback",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"tsc": "tsc",
|
2020-10-01 14:11:34 +02:00
|
|
|
"dev": "ts-node-dev --respawn ./server.ts",
|
2020-10-21 15:15:07 +02:00
|
|
|
"prod": "tsc && node --max-old-space-size=4096 ./dist/server.js",
|
2020-12-09 16:33:59 +01:00
|
|
|
"runprod": "node --max-old-space-size=4096 ./dist/server.js",
|
2020-06-03 09:18:49 +02:00
|
|
|
"profile": "tsc && node --prof ./dist/server.js",
|
2020-04-06 15:48:19 +02:00
|
|
|
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
|
2020-04-28 22:40:54 +02:00
|
|
|
"lint": "node_modules/.bin/eslint src/ . --ext .ts",
|
2020-05-01 23:48:30 +02:00
|
|
|
"fix": "node_modules/.bin/eslint --fix src/ . --ext .ts"
|
2020-04-04 04:08:12 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/thecodingmachine/workadventure.git"
|
|
|
|
},
|
2020-06-09 23:07:19 +02:00
|
|
|
"contributors": [
|
|
|
|
{
|
2020-06-09 10:17:21 +02:00
|
|
|
"name": "Grégoire Parant",
|
|
|
|
"email": "g.parant@thecodingmachine.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "David Négrier",
|
|
|
|
"email": "d.negrier@thecodingmachine.com"
|
2020-06-09 12:13:51 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Arthmaël Poly",
|
|
|
|
"email": "a.poly@thecodingmachine.com"
|
2020-06-09 23:07:19 +02:00
|
|
|
}
|
|
|
|
],
|
2020-06-09 10:17:21 +02:00
|
|
|
"license": "SEE LICENSE IN LICENSE.txt",
|
2020-04-04 04:08:12 +02:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/thecodingmachine/workadventure/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/thecodingmachine/workadventure#readme",
|
|
|
|
"dependencies": {
|
2021-01-06 15:41:45 +01:00
|
|
|
"axios": "^0.21.1",
|
2020-04-04 04:08:12 +02:00
|
|
|
"body-parser": "^1.19.0",
|
2020-09-28 18:52:54 +02:00
|
|
|
"busboy": "^0.3.1",
|
2020-09-25 13:48:02 +02:00
|
|
|
"circular-json": "^0.5.9",
|
2020-11-13 18:00:22 +01:00
|
|
|
"debug": "^4.3.1",
|
2020-06-09 23:07:19 +02:00
|
|
|
"generic-type-guard": "^3.2.0",
|
2020-09-24 11:16:08 +02:00
|
|
|
"google-protobuf": "^3.13.0",
|
2020-11-13 18:00:22 +01:00
|
|
|
"grpc": "^1.24.4",
|
2020-04-04 17:22:02 +02:00
|
|
|
"http-status-codes": "^1.4.0",
|
2020-09-28 18:52:54 +02:00
|
|
|
"iterall": "^1.3.0",
|
2020-04-04 14:05:18 +02:00
|
|
|
"jsonwebtoken": "^8.5.1",
|
2020-10-01 14:11:34 +02:00
|
|
|
"mkdirp": "^1.0.4",
|
2020-09-20 19:01:21 +02:00
|
|
|
"multer": "^1.4.2",
|
2020-06-09 11:49:23 +02:00
|
|
|
"prom-client": "^12.0.0",
|
2020-09-28 18:52:54 +02:00
|
|
|
"query-string": "^6.13.3",
|
2021-01-06 09:19:02 +01:00
|
|
|
"systeminformation": "^4.31.1",
|
2020-04-04 04:08:12 +02:00
|
|
|
"ts-node-dev": "^1.0.0-pre.44",
|
2020-04-10 12:54:05 +02:00
|
|
|
"typescript": "^3.8.3",
|
2020-09-28 18:52:54 +02:00
|
|
|
"uWebSockets.js": "uNetworking/uWebSockets.js#v18.5.0",
|
2020-04-10 12:54:05 +02:00
|
|
|
"uuidv4": "^6.0.7"
|
2020-04-04 04:08:12 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-01 14:11:34 +02:00
|
|
|
"@types/busboy": "^0.2.3",
|
2020-09-25 13:48:02 +02:00
|
|
|
"@types/circular-json": "^0.4.0",
|
2020-11-13 18:00:22 +01:00
|
|
|
"@types/debug": "^4.1.5",
|
2020-09-24 11:16:08 +02:00
|
|
|
"@types/google-protobuf": "^3.7.3",
|
2020-09-18 16:05:52 +02:00
|
|
|
"@types/http-status-codes": "^1.2.0",
|
2020-04-06 15:48:19 +02:00
|
|
|
"@types/jasmine": "^3.5.10",
|
2020-09-18 16:05:52 +02:00
|
|
|
"@types/jsonwebtoken": "^8.3.8",
|
2020-10-01 14:11:34 +02:00
|
|
|
"@types/mkdirp": "^1.0.1",
|
2020-09-18 16:05:52 +02:00
|
|
|
"@types/uuidv4": "^5.0.0",
|
2020-04-04 04:08:12 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
|
|
"@typescript-eslint/parser": "^2.26.0",
|
2020-04-06 15:48:19 +02:00
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"jasmine": "^3.5.0"
|
2020-04-04 04:08:12 +02:00
|
|
|
}
|
|
|
|
}
|