-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 3.62 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "neon-uat",
"version": "1.0.0",
"description": "",
"scripts": {
"test:t": "mocha --config=.mocharc.json --node-env=test --exit",
"truffle": "cd openzeppelin-contracts && ../node_modules/.bin/truffle --network neonlabs test",
"clean": "rimraf ./report ./allure-results ./allure",
"cleanup": "rimraf ./dist ./report ./allure-results ./allure",
"test": "rimraf ./dist && tsc && npm run clean && sleep 1 && mocha --config .mocharc.json",
"test:ci": "rimraf ./dist && tsc && sleep 1 && mocha --config .mocharc.json",
"test:hardhat:advanced": "cd frameworks/hardhat-advanced && npx hardhat test; cd ../..",
"test:hardhat:simple": "cd frameworks/hardhat-simple && npx hardhat run scripts/sample-script.js; cd ../..",
"test:openzeppelin": "cd openzeppelin-contracts && npx hardhat test; cd ../..",
"allure-report": "allure generate ./report/allure-results -c && allure open",
"tslint-fix": "tslint --fix --project .",
"tslint": "tslint --project .",
"precommit": "lint-staged",
"postcommit": "git update-index -g"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neonlabsorg/neon-compatibility.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/neonlabsorg/neon-compatibility/issues"
},
"homepage": "https://github.com/neonlabsorg/neon-compatibility#readme",
"dependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@openzeppelin/contracts": "^4.3.3",
"@openzeppelin/test-helpers": "^0.5.13",
"@truffle/hdwallet-provider": "^1.5.1",
"@types/ethjs-util": "^0.1.0",
"axios": "^0.22.0",
"dotenv": "^10.0.0",
"ethereumjs-util": "^7.1.2",
"ethjs-util": "^0.1.6",
"keccak": "^3.0.2",
"keccak256": "^1.0.3",
"lodash": "^4.17.21",
"lodash.zip": "^4.2.0",
"merkletreejs": "^0.2.24",
"mocha-allure-reporter": "^1.4.0",
"rimraf": "^3.0.2",
"solc": "^0.8.10",
"truffle": "^5.4.14",
"web3": "^1.6.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@testdeck/mocha": "^0.1.2",
"@types/chai": "^4.2.22",
"@types/memory-cache": "^0.2.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@types/rimraf": "^3.0.2",
"allure-decorators": "^2.0.0-beta.13",
"allure-js-commons": "^2.0.0-beta.13",
"allure-mocha": "^2.0.0-beta.13",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"ethjs": "^0.4.0",
"ethjs-contract": "^0.2.3",
"ethjs-provider-http": "^0.1.6",
"hardhat": "^2.6.3",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"memory-cache": "^0.2.0",
"mocha": "^9.1.2",
"mocha-multi-reporters": "^1.5.1",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"source-map-support": "^0.5.20",
"ts-node": "^10.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.10",
"typescript-eslint-parser": "^22.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"git add"
]
}
}