-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
36 lines (36 loc) · 1.38 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
{
"name": "ink-hands-on",
"version": "1.0.0",
"author": "fbielejec",
"license": "MIT",
"scripts": {
"compile": "typechain-compiler --release --toolchain nightly-2024-02-16",
"deploy-escrow": "npm config set script-shell \"/bin/bash\"; ts-node scripts/1_deploy_escrow.ts",
"deploy-old-a": "npm config set script-shell \"/bin/bash\"; ts-node scripts/2_deploy_old_a.ts",
"upload-new-a": "npm config set script-shell \"/bin/bash\"; ts-node scripts/3_upload_new_a.ts",
"upgrade-a": "npm config set script-shell \"/bin/bash\"; ts-node scripts/4_upgrade_a.ts"
},
"dependencies": {
"@727-ventures/typechain-compiler": "^1.1.0",
"@727-ventures/typechain-types": "^1.1.0",
"@polkadot/api": "^10.9.1",
"@polkadot/api-contract": "^10.9.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"assert": "^2.1.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.1.0",
"ethers": "^6.10.0",
"hardhat": "^2.19.5"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}