twitch-chess/package.json
2025-01-18 21:55:01 -05:00

25 lines
620 B
JSON

{
"name": "twitch-chess",
"version": "0.0.1",
"description": "A small website for Twitch Chat to play chess",
"scripts": {
"check": "tsc -p server",
"start": "tsc -p server && ts-node server/index.ts",
"start-no-check": "ts-node server/index.ts"
},
"repository": {
"type": "git",
"url": "https://git.thearst3rd.com/thearst3rd/twitch-chess"
},
"author": "Terry Hearst",
"license": "MIT",
"dependencies": {
"express": "^4.21.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}