workadventure/back/package.json

66 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "workadventureback",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
2020-09-18 16:05:52 +02:00
"dev": "ts-node-dev --respawn --transpileOnly ./server.ts",
"prod": "tsc && node ./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",
"lint": "node_modules/.bin/eslint src/ . --ext .ts",
"fix": "node_modules/.bin/eslint --fix src/ . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thecodingmachine/workadventure.git"
},
"contributors": [
{
"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"
}
],
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/thecodingmachine/workadventure/issues"
},
"homepage": "https://github.com/thecodingmachine/workadventure#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"generic-type-guard": "^3.2.0",
"google-protobuf": "^3.13.0",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"prom-client": "^12.0.0",
"socket.io": "^2.3.0",
"systeminformation": "^4.26.5",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3",
"uuidv4": "^6.0.7"
},
"devDependencies": {
2020-09-18 16:05:52 +02:00
"@types/express": "^4.17.4",
"@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",
"@types/socket.io": "^2.1.4",
"@types/uuidv4": "^5.0.0",
"@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"
}
}