aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-05-29 14:48:50 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-05-29 14:53:08 -0700
commit548498d37424f2ac579770962b627aeba61925e8 (patch)
tree1d02f147b82dd8f9a48296f01a2ae2e84d71958c /package.json
downloadchessh-bot-548498d37424f2ac579770962b627aeba61925e8.tar.gz
chessh-bot-548498d37424f2ac579770962b627aeba61925e8.zip
added bot
Diffstat (limited to 'package.json')
-rw-r--r--package.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..af83f18
--- /dev/null
+++ b/package.json
@@ -0,0 +1,51 @@
+{
+ "name": "chessh-bot",
+ "version": "0.0.1",
+ "description": "A basic chessh bot example",
+ "main": "src/index.ts",
+ "scripts": {
+ "start": "ts-node src/index.ts",
+ "dev": "nodemon src/index.ts",
+ "build": "tsc",
+ "lint": "eslint --fix src test",
+ "test": "jest",
+ "vercel-build": "echo hello"
+ },
+ "keywords": [],
+ "author": "CJ R. <cj@null.computer> (https://w3cj.now.sh)",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/w3cj/express-api-starter.git"
+ },
+ "license": "MIT",
+ "dependencies": {
+ "axios": "^1.4.0",
+ "cors": "^2.8.5",
+ "dotenv": "^16.0.3",
+ "express": "^4.18.2",
+ "helmet": "^6.1.5",
+ "js-chess-engine": "^1.0.2",
+ "morgan": "^1.10.0",
+ "prettier": "^2.8.8"
+ },
+ "devDependencies": {
+ "@types/cors": "^2.8.13",
+ "@types/express": "^4.17.17",
+ "@types/jest": "^29.5.1",
+ "@types/morgan": "^1.9.4",
+ "@types/node": "^18.16.3",
+ "@types/supertest": "^2.0.12",
+ "@typescript-eslint/eslint-plugin": "^5.59.1",
+ "@typescript-eslint/parser": "^5.59.1",
+ "eslint": "^8.39.0",
+ "eslint-config-airbnb-typescript": "^17.0.0",
+ "eslint-import-resolver-typescript": "^3.5.5",
+ "eslint-plugin-import": "^2.27.5",
+ "jest": "^29.5.0",
+ "nodemon": "^2.0.22",
+ "supertest": "^6.3.3",
+ "ts-jest": "^29.1.0",
+ "ts-node": "^10.9.1",
+ "typescript": "^5.0.4"
+ }
+}