forked from tasitlabs/tasit-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
39
40
41
{
"name": "root",
"private": true,
"description": "A monorepo for all npm packages in the Tasit ecosystem",
"devDependencies": {
"@babel/preset-env": "^7.1.6",
"ganache-cli": "^6.1.8",
"lerna": "^3.4.3",
"prettier": "^1.15.3",
"prettier-plugin-solidity": "^1.0.0-alpha.12"
},
"scripts": {
"bootstrap": "npx lerna bootstrap --hoist",
"ganache:start": "npx ganache-cli -m 'beach swap combine paper music cook electric bullet trust actress liquid asthma' > /dev/null 2>&1 &",
"ganache:stop": "kill `ps ax|grep ganache-cli|grep -v grep| awk '{print $1}'` 2> /dev/null; exit 0",
"truffle:migrate": "npx lerna run migrate --scope tasit-contracts",
"pretest": "npm run bootstrap && npm run ganache:stop && npm run ganache:start && npm run truffle:migrate",
"test": "npx lerna run test",
"posttest": "npm run ganache:stop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tasitlabs/TasitSDK.git"
},
"keywords": [
"dapp",
"ethereum",
"react",
"native"
],
"author": "Tasit Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/tasitlabs/TasitSDK/issues"
},
"homepage": "https://github.com/tasitlabs/TasitSDK#readme",
"engines": {
"node": ">=10.13.0",
"npm": ">=6.4.1"
}
}