-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@counterfactual/tic-tac-toe-bot",
"version": "0.0.22",
"description": "A bot for the Tic Tac Toe Playground dApp.",
"author": "Counterfactual",
"homepage": "https://counterfactual.com/",
"license": "MIT",
"main": "src/index.js",
"engines": {
"yarn": "1.17.3",
"node": "10.15.3"
},
"directories": {
"lib": "src",
"test": "tests"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/counterfactual/dapps-bots.git"
},
"scripts": {
"heroku-postbuild": "sh ./scripts/heroku-postbuild.sh",
"lint": "tslint -c tslint.json -p .",
"lint:fix": "tslint -c tslint.json -p . --fix",
"serve": "node dist",
"start": "env-cmd -e development ts-node src/",
"test": "echo 'temporarily skipping' || env-cmd -e test jest --forceExit"
},
"bugs": {
"url": "https://github.com/counterfactual/dapps-bots/issues"
},
"dependencies": {
"@counterfactual/dapp-tic-tac-toe": "0.1.2",
"@counterfactual/firebase-client": "0.0.6",
"@counterfactual/node": "0.2.66",
"@counterfactual/types": "0.0.38",
"@counterfactual/typescript-typings": "0.1.2",
"eventemitter3": "^4.0.0"
},
"devDependencies": {
"@counterfactual/firebase-server": "0.0.1",
"env-cmd": "9.0.3",
"ethers": "4.0.33",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"typescript": "3.5.3",
"uuid": "3.3.2"
}
}