-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
37 lines (37 loc) · 974 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
34
35
36
37
{
"name": "@connext/xapp-starter",
"description": "xApp Starter Kit",
"version": "0.1.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/connext/xapp-starter.git"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"dotenv": "^16.0.0",
"dotenv-expand": "^10.0.0",
"ethers": "^5.6.2",
"hardhat": "2.12.1",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"ts-node": "^10.7.0",
"typescript": "^4.9.5"
},
"scripts": {
"build": "make install",
"setup": "make clean && make build",
"sync": "make install",
"test": "make test-unit-all",
"snapshot": "make snapshot",
"lint": "make lint",
"xtransfer": "tsc && node dist/src/sdk-examples/xtransfer.js"
},
"dependencies": {
"@connext/interfaces": "^2.0.0",
"@connext/sdk": "^0.2.7",
"@types/memoizee": "^0.4.8"
}
}