MultiplayerMinesweeper/package.json

32 lines
733 B
JSON
Raw Normal View History

2022-04-20 04:32:17 +00:00
{
2023-04-03 19:26:24 +00:00
"name": "multiplayer_minesweeper",
2022-04-20 04:32:17 +00:00
"version": "1.0.0",
"description": "",
"main": "",
"type": "module",
2022-04-20 04:32:17 +00:00
"scripts": {
2022-06-26 13:18:16 +00:00
"test": "echo \"Error: no test specified\" && exit 1"
2022-04-20 04:32:17 +00:00
},
2022-04-30 21:49:20 +00:00
"repository": {
"type": "git",
"url": "empires"
},
"author": "Alexander Bass",
2023-04-03 19:26:24 +00:00
"license": "GPLv3",
2022-04-30 21:49:20 +00:00
"dependencies": {
"express": "^4.18.1",
2022-06-22 20:01:58 +00:00
"sass": "^1.52.3",
2022-07-20 03:50:48 +00:00
"socket.io": "^4.5.1",
2023-04-03 19:26:24 +00:00
"ts-node": "^10.8.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/express": "^4.17.13",
2022-07-20 03:50:48 +00:00
"@types/node": "^18.0.0",
2023-04-03 19:26:24 +00:00
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"rollup": "^2.75.7",
"typescript": "^4.7.4"
2022-04-30 21:49:20 +00:00
}
2023-04-03 19:26:24 +00:00
}