-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 729 Bytes
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
{
"name": "chess-ai",
"version": "0.2.0",
"description": "AI playing chess and eating patato...",
"main": "src/server/app.js",
"scripts": {
"build": "rm -rf dist && parcel build src/index.html --public-url ./ --out-dir dist",
"start": "rm -rf dist && parcel src/index.html --out-dir dist",
"test": "node test/wac300.js"
},
"keywords": [
"chess",
"ai"
],
"author": "Deniz Gurkaynak <dgurkaynak@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/dgurkaynak/chess-ai"
},
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.6.0",
"chessboardjs": "^0.0.1",
"jquery": "^3.5.0",
"lodash": "^4.17.21",
"parcel-bundler": "^1.12.4"
}
}