-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.37 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
{
"name": "chainlink-nervos",
"description": "",
"license": "MIT",
"author": "",
"homepage": "",
"version": "0.0.1",
"main": "dist/js/src/DeployOracles.js",
"files": [
"dist/js/build",
"dist/js/src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "yarn compile && yarn build:ts",
"build:ts": "tsc -b tsconfig.json",
"clean": "shx rm -rf dist build",
"compile": "hardhat compile",
"deploy": "ts-node src/deploy.ts",
"update": "ts-node src/update.ts",
"start:ethers": "ts-node src/HeadTail-ethers.ts",
"start:ganache": "ganache-cli -m 'chalk park staff buzz chair purchase wise oak receive avoid avoid home' -l 8000000 -e 1000000 -a 20 -g 0 --chainId 1337",
"test": "mocha -r ts-node/register src/test/*.test.ts --timeout 60000 --exit",
"test:contracts": "yarn test:concurrent",
"prettier": "prettier --write --config-precedence file-override './src/**/*'",
"ui": "cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" webpack serve"
},
"types": "dist/js/src/index.d.ts",
"dependencies": {
"@chainlink/contracts": "0.2.1",
"@polyjuice-provider/ethers": "0.0.1-rc11",
"ethers": "^5.1.3",
"node-fetch": "2.6.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.1.0",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "4.2.9",
"@types/mocha": "7.0.1",
"@types/node": "12.12.27",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"assert": "^2.0.0",
"chai": "4.2.0",
"cross-env": "7.0.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"ethereum-waffle": "^3.4.0",
"ethlint": "1.2.5",
"hardhat": "^2.6.4",
"prettier": "1.19.1",
"shx": "0.3.2",
"truffle": "^5.2.6",
"ts-node": "10.2.1",
"typechain": "5.1.2",
"typescript": "4.4.3"
},
"engines": {
"node": ">= 14"
}
}