-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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": "state-channels-poc",
"version": "1.0.0",
"description": "PoC for state channels",
"engines": {
"node": ">=10"
},
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\" \"**/*.md\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"lint": "npm run prettier:check",
"lint:fix": "npm run prettier:fix",
"prestart": "npm run build",
"start": "lerna run start",
"ganache": "lerna run ganache",
"migrate": "lerna run truffle:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LunchBadger/statechannels.git"
},
"author": "James, Albert, Raymond",
"license": "MIT",
"bugs": {
"url": "https://github.com/LunchBadger/statechannels/issues"
},
"homepage": "https://github.com/LunchBadger/statechannels#readme",
"devDependencies": {
"lerna": "^3.4.0",
"prettier": "^1.14.3"
},
"dependencies": {}
}