mancala/package.json

36 lines
768 B
JSON
Raw Normal View History

2021-06-27 01:41:52 +03:00
{
"name": "mancala-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
2021-06-29 03:26:23 +03:00
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage"
2021-06-27 01:41:52 +03:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2021-06-27 19:28:09 +03:00
"@types/cors": "^2.8.10",
"@types/uuid": "^8.3.0",
2021-06-27 02:45:40 +03:00
"@types/ws": "^7.4.5",
2021-06-27 19:28:09 +03:00
"cors": "^2.8.5",
2021-06-27 02:45:40 +03:00
"express": "^4.17.1",
2021-06-27 19:28:09 +03:00
"uuid": "^8.3.2",
2021-06-27 02:45:40 +03:00
"ws": "^7.5.0"
2021-06-27 01:41:52 +03:00
},
"devDependencies": {
"@types/express": "^4.17.12",
2021-06-29 03:26:23 +03:00
"@types/jest": "^26.0.23",
2021-06-27 01:41:52 +03:00
"@types/node": "^15.12.4",
2021-06-29 03:26:23 +03:00
"jest": "^27.0.5",
2021-06-27 01:41:52 +03:00
"nodemon": "^2.0.7",
2021-06-29 03:26:23 +03:00
"ts-jest": "^27.0.3",
2021-06-27 01:41:52 +03:00
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}