-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 953 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
{
"name": "nitro-tutorial",
"version": "0.1.0",
"description": "Provides a dev environment for interacting with @statechannels/nitro-protocol contracts.",
"main": "index.ts",
"author": "George Knee",
"license": "MIT",
"private": true,
"engines": {
"node": "~12.16.0"
},
"devDependencies": {
"@statechannels/devtools": "0.4.0",
"@statechannels/nitro-protocol": "0.4.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"etherlime": "^2.3.3",
"etherlime-lib": "^1.2.3",
"ethers": "5.0.17",
"jest": "^26.0.1",
"ts-jest": "^26.0.0"
},
"resolutions": {
"scrypt": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz",
"websocket": "1.0.30"
},
"scripts": {
"contract:compile": "node ./bin/compile.js",
"tutorial": "jest -c ./jest/jest.tutorial.config.js --runInBand",
"fix-and-test": "git apply fix-tutorial.patch && yarn tutorial"
}
}