forked from AstarNetwork/frontier-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 879 Bytes
/
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
{
"name": "ts-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"fmt-check": "prettier ./tests --check",
"fmt": "prettier ./tests --write",
"build": "truffle compile",
"test": "mocha --timeout 5000 -r ts-node/register 'tests/**/test-*.ts'",
"test-sql": "FRONTIER_BACKEND_TYPE='sql' mocha --timeout 5000 -r ts-node/register 'tests/**/*.ts'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"ethers": "^6.3.0",
"mocha": "^10.2.0",
"mocha-steps": "^1.3.0",
"rimraf": "^5.0.0",
"truffle": "^5.10.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"web3": "^1.9.0"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1.5",
"prettier": "^2.8.8"
}
}