-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
55
56
57
58
{
"name": "battleship",
"version": "0.0.0",
"description": "Battleship Ethereum game monorepo",
"private": true,
"main": "index.js",
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"watch": "lerna run --parallel watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stwiname/Battleship.git"
},
"author": "Scott Twiname",
"license": "ISC",
"bugs": {
"url": "https://github.com/stwiname/Battleship/issues"
},
"homepage": "https://github.com/stwiname/Battleship#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/ramda": "^0.26.33",
"@types/yargs": "^13.0.3",
"husky": "^3.0.9",
"lerna": "^3.18.3",
"lint-staged": "^9.4.2",
"truffle-typings": "^1.0.8",
"typescript": "^3.7.2"
},
"dependencies": {
"bn.js": "^5.0.0",
"ethers": "^4.0.46",
"moment": "^2.24.0",
"ramda": "^0.26.1",
"ts-node": "^8.4.1",
"web3": "^1.2.2"
},
"lint-staged": {
"{src,lib,test}/**/*.{ts,tsx}": [
"tslint --fix -c tslint.json",
"prettier --config .prettierrc --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"libraryAddresses": {
"auction": "0x50e618682b4927fe0C8F61cC11ec9fd1524f0a31",
"game": "0xABBFD2A226d5AAA6D15546424Fe8Be0Cfa88dD27"
}
}