-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "neutron-mainnet-fork-tests",
"version": "1.0.0",
"author": "Neutron",
"license": "Apache-2.0",
"description": "Neutron mainet fork integrartion tests",
"repository": "git@github.com:neutron-org/mainnet-fork-tests.git",
"scripts": {
"test": "vitest --run",
"watch": "vitest",
"build-ts-client": "ts-node ./src/rebuild-client.ts",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@cosmjs/amino": "^0.31.0",
"@cosmjs/cosmwasm-stargate": "^0.31.0",
"@cosmjs/proto-signing": "^0.31.0",
"@cosmjs/stargate": "^0.31.0",
"@neutron-org/client-ts": "^1.4.0",
"@neutron-org/contracts2ts": "^1.3.1",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"ts-node": "^10.9.1",
"yaml": "^2.3.2"
},
"devDependencies": {
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitest/ui": "^0.34.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"typescript": "^5.0.4",
"vitest": "^0.34.1"
}
}