-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.6 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
{
"name": "octopus-appchain-anchor",
"version": "0.1.0",
"main": "index.js",
"repository": "[email protected]:octopus-network/octopus-appchain-anchor.git",
"author": "Octopus Network",
"scripts": {
"test": "./build.sh test && ANCHOR_NAME=anchor_contract REGISTRY_NAME=registry_contract OCT_NAME=oct_contract WRAPPED_APPCHAIN_TOKEN=wrapped_appchain_token jest test --runInBand",
"e2e": "./build.sh && ANCHOR_NAME=anchor_contract REGISTRY_NAME=registry_contract OCT_NAME=oct_contract WRAPPED_APPCHAIN_TOKEN=wrapped_appchain_token jest test --runInBand",
"e2e:testnet": "./build.sh && NODE_ENV=testnet ANCHOR_NAME=anchor_contract REGISTRY_NAME=registry_contract OCT_NAME=oct_contract WRAPPED_APPCHAIN_TOKEN=wrapped_appchain_token jest test --runInBand",
"e2e:local": "./build.sh && NODE_ENV=local ANCHOR_NAME=anchor_contract REGISTRY_NAME=registry_contract OCT_NAME=oct_contract WRAPPED_APPCHAIN_TOKEN=wrapped_appchain_token jest test --runInBand"
},
"devDependencies": {
"env-cmd": "~10.1.0",
"gh-pages": "~3.1.0",
"jest": "~26.6.2",
"jest-environment-node": "~26.6.2",
"near-cli": "^3.1.0",
"nodemon": "~2.0.3",
"parcel-bundler": "~1.12.4",
"prettier": "2.4.1",
"shelljs": "~0.8.4"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"near-api-js": "~0.36.3",
"regenerator-runtime": "~0.13.5"
},
"jest": {
"testEnvironment": "<rootDir>/e2e-tests/test_environment",
"testPathIgnorePatterns": [
"<rootDir>/appchain-anchor/",
"<rootDir>/mock-appchain-registry/",
"<rootDir>/mock-oct-token/",
"<rootDir>/node_modules/"
]
}
}