-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 938 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
35
36
{
"name": "play-2048-game",
"version": "0.0.1",
"description": "To return a move (0: UP, 1: RIGHT, 2: DOWN, or 3: LEFT) for the game 2048 when presented with a 2048 game board.",
"main": "src/index.mjs",
"scripts": {
"start": "node --env-file=.env src/index.mjs",
"watch": "nodemon --env-file=.env src/index.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imagh/play-2048-game.git"
},
"keywords": [
"2048",
"node",
"Node.js",
"express",
"javascript",
"expectimax",
"backend",
"game"
],
"author": "imagh <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/imagh/play-2048-game/issues"
},
"homepage": "https://github.com/imagh/play-2048-game#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.0",
"sqlite3": "^5.1.7"
}
}