-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
executable file
·86 lines (86 loc) · 3.14 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "bepro-js",
"version": "1.2.9",
"description": "",
"main": "index.js",
"engines": {
"node": "^14 || ^16"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/betprotocol/bepro-js.git"
},
"scripts": {
"pretest": "yarn build && ./node_modules/.bin/truffle migrate --network development",
"test": "./node_modules/.bin/mocha --exit ./tests/index.js --timeout 3000000 --require @babel/register --require @babel/polyfill --reporter mocha-multi-reporters",
"test:truffle": "./node_modules/.bin/truffle test --network development ./tests/contracts/erc20TokenLock-truffle.js",
"build": "yarn compile && babel ./src --out-dir lib --copy-files -d ./build",
"compile": "./node_modules/.bin/truffle compile",
"clean:contracts": "rimraf build/contracts && ./node_modules/.bin/truffle compile",
"docs": "yarn build && yarn jsdoc:build && yarn jsdoc:serve",
"jsdoc:build": "jsdoc -t ./node_modules/better-docs src -r -c docs-src/jsdoc.json",
"jsdoc:serve": "http-server ./docs/ -o",
"lint": "eslint ./src ./tests --cache",
"lint:fix": "eslint ./src ./tests --fix",
"ganache:start": "ganache-cli -p 8545 -q",
"watch": "yarn build && onchange 'src/**/*.js' -- yarn build"
},
"pre-commit": [
"lint:fix",
"build",
"jsdoc:build"
],
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.16.0",
"@babel/runtime-corejs3": "^7.16.3",
"@openzeppelin/contracts": "^3.4.1",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"abi-decoder": "^1.2.0",
"accounting": "^0.4.1",
"assertion-error": "^1.1.0",
"bignumber.js": "8.1.1",
"chai": "^4.2.0",
"chai-bignumber": "3.0.0",
"dayjs": "^1.9.4",
"delay": "^5.0.0",
"express": "^4.17.1",
"ganache-time-traveler": "^1.0.5",
"ipfs-http-client": "^50.0.0",
"lodash": "^4.17.10",
"mocha": "^9.1.3",
"moment": "^2.21.0",
"web3": "^1.3.6",
"web3-eth-abi": "^1.7.4",
"web3-utils": "^1.3.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"better-docs": "^2.3.2",
"eslint": "^7",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"ganache-cli": "^6.12.2",
"http-server": "^14.0.0",
"jsdoc": "^3.6.6",
"mocha-multi-reporters": "^1.5.1",
"onchange": "^7.1.0",
"pre-commit": "^1.2.2",
"truffle": "^5.4.26",
"truffle-plugin-verify": "^0.5.8"
},
"author": "",
"license": "ISC"
}