-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 915 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "snake-game-ai",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"train": "node src/process_snake_data | node src/trainer.js",
"start": "node app.js"
},
"author": "Phoenix_R49",
"license": "MIT",
"description": "A simple snake game powered by AI",
"repository": {
"type": "git",
"url": "git+https://github.com/PhoenixR49/snake-game-ai.git"
},
"bugs": {
"url": "https://github.com/PhoenixR49/snake-game-ai/issues"
},
"homepage": "https://github.com/PhoenixR49/snake-game-ai#readme",
"dependencies": {
"brain.js": "^2.0.0-beta.23",
"ejs": "^3.1.9",
"express": "^4.18.3",
"socket.io": "^4.7.5"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
}
}