-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 KB
/
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
37
38
39
40
41
42
{
"name": "qm-tictactoe-minimax",
"version": "1.0.0",
"description": "bestMove function for tictactoe game based on minimax algorithm",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"ts-node": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jameshallam93/minimaxnpm.git"
},
"keywords": [
"minimax",
"tictactoe",
"bestmove"
],
"author": "James Hallam",
"license": "MIT",
"homepage": "https://github.com/jameshallam93/minimaxnpm#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.21",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"install": "^0.13.0",
"jest": "^26.6.3",
"npm": "^7.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"dependencies": {
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.27.2"
}
}