-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.94 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
59
60
61
62
63
64
65
66
67
68
{
"name": "contracts",
"version": "1.0.0",
"description": "Smart contract for dicether",
"main": "index.js",
"scripts": {
"build": "tsc",
"compile": "truffle compile",
"migrate-development": "truffle migrate --network development",
"migrate-test": "truffle migrate --network test",
"mocha": " truffle test --network test ./lib/test/**/*.js ./lib/test/*.js",
"test": "run-s build mocha",
"clean": "shx rm -r ./lib",
"eslint": "eslint './**/*.{js,ts,tsx}'",
"prettier": "prettier --write './**/*.{js,ts,tsx}'",
"prettier-check": "prettier --check './**/*.{js,ts,tsx}'",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"prettier": "@dicether/prettier-config",
"keywords": [
"dice"
],
"author": "Dicether",
"license": "AGPL-3.0-only",
"dependencies": {
"@dicether/state-channel": "^1.0.0",
"truffle": "^5.4.31"
},
"devDependencies": {
"@dicether/eslint-config": "^1.0.0",
"@dicether/prettier-config": "^1.0.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.1",
"@types/web3": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bn-chai": "^1.0.1",
"bn.js": "^4.12.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.28.0",
"eslint-plugin-prettier": "^3.4.0",
"eth-sig-util": "^3.0.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.10",
"husky": "^6.0.0",
"leche": "^2.3.0",
"left-pad": "^1.1.3",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"shx": "^0.3.3",
"typescript": "^4.3.2"
}
}