-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
37 lines (37 loc) · 1.61 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
{
"name": "openbrush-contracts",
"version": "4.0.0-beta.1",
"private": true,
"dependencies": {
"@727-ventures/typechain-compiler": "^1.1.4",
"@727-ventures/typechain-types": "^1.1.2",
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"@polkadot/api-contract": "^10.9.1",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^7.26.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.8.0",
"mocha": "10.1.0"
},
"scripts": {
"build": "npx @727-ventures/typechain-compiler --config ./typechain-compiler-config.json",
"build:release:no-compile": "npx @727-ventures/typechain-compiler --config ./typechain-compiler-config.json --release --noCompile",
"build:release": "npx @727-ventures/typechain-compiler --config ./typechain-compiler-config.json --release",
"typechain": "npx @727-ventures/typechain-polkadot --in artifacts --out ./typechain-generated",
"test:mocha": "mocha --require @babel/register --require ts-node/register --recursive ./tests --extension \".ts\" --exit --timeout 20000",
"test:mocha-single": "mocha --require @babel/register --require ts-node/register --extension \".ts\" --exit --timeout 20000",
"test": "yarn build:release && yarn test:mocha"
}
}