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",
|
2021-06-24 10:23:32 +02:00
|
|
|
"lint": "DEBUG= node_modules/.bin/eslint src/ . --ext .ts",
|
|
|
|
"fix": "DEBUG= node_modules/.bin/eslint --fix src/ . --ext .ts",
|
2021-06-23 16:45:38 +02:00
|
|
|
"precommit": "lint-staged",
|
2021-06-23 16:56:33 +02:00
|
|
|
"pretty": "yarn prettier --write 'src/**/*.{ts,tsx}'",
|
|
|
|
"pretty-check": "yarn prettier --check 'src/**/*.{ts,tsx}'"
|
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-10-18 14:11:24 +02:00
|
|
|
"@workadventure/tiled-map-type-guard": "^1.0.3",
|
2021-09-20 14:34:04 +02:00
|
|
|
"axios": "^0.21.2",
|
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",
|
2021-07-19 10:16:43 +02:00
|
|
|
"ipaddr.js": "^2.0.1",
|
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-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-07-19 15:57:50 +02:00
|
|
|
"redis": "^3.1.2",
|
2020-09-28 18:52:54 +02:00
|
|
|
"uWebSockets.js": "uNetworking/uWebSockets.js#v18.5.0",
|
2021-11-08 17:44:44 +01:00
|
|
|
"uuidv4": "^6.0.7",
|
|
|
|
"winston": "^3.3.3"
|
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",
|
2021-07-19 15:57:50 +02:00
|
|
|
"@types/redis": "^2.8.31",
|
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",
|
2021-01-07 19:09:53 +01:00
|
|
|
"jasmine": "^3.5.0",
|
2021-06-23 16:45:38 +02:00
|
|
|
"lint-staged": "^11.0.0",
|
2021-06-23 16:23:16 +02:00
|
|
|
"prettier": "^2.3.1",
|
2021-01-07 19:09:53 +01:00
|
|
|
"ts-node-dev": "^1.0.0-pre.44",
|
|
|
|
"typescript": "^3.8.3"
|
2021-06-23 16:45:38 +02:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
2021-06-23 16:50:00 +02:00
|
|
|
"prettier --write"
|
2021-06-23 16:45:38 +02:00
|
|
|
]
|
2020-04-04 04:08:12 +02:00
|
|
|
}
|
|
|
|
}
|