mancala/package.json

39 lines
865 B
JSON
Raw Normal View History

2021-06-27 01:41:52 +03:00
{
"name": "mancala-backend",
2022-09-02 01:19:24 +03:00
"version": "0.2.1-alpha.0",
2021-06-27 01:41:52 +03:00
"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",
2022-04-11 22:25:49 +03:00
"test": "jest",
2021-06-29 03:26:23 +03:00
"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",
2022-04-11 22:25:49 +03:00
"@types/morgan": "^1.9.3",
2021-06-27 19:28:09 +03:00
"@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",
"mancala.js": "^0.0.2-beta.3",
2022-04-11 22:25:49 +03:00
"morgan": "^1.10.0",
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"
}
}