-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
71 lines (71 loc) · 3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "root",
"private": true,
"description": "A monorepo for all npm packages in the Tasit ecosystem",
"devDependencies": {
"@nomiclabs/buidler": "^1.3.8",
"@types/node": "^13.13.1",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"lerna": "^3.22.0",
"npm-check-updates": "^6.0.1",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.53",
"ts-node": "^8.10.2",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"scripts": {
"postinstall": "npm run bootstrap",
"audit:fix:all": "npx lerna exec --stream --concurrency 1 -- npm audit fix",
"update": "npx ncu -x '@types/node'",
"update:write": "npm run update -- -u",
"update:all": "npx lerna run update --stream --concurrency 1",
"update:all:write": "npx lerna run update:write --concurrency 1",
"clean": "npx lerna run clean --stream && npx lerna clean --yes && rm -rf ./node_modules && npm run remove:package-lock",
"publish": "npm run bootstrap && npm test && npx lerna publish",
"bootstrap": "npx lerna bootstrap",
"blockchain:scoped:start": "npx lerna run blockchain:start --scope @tasit/contracts --stream",
"blockchain:scoped:stop": "npx lerna run blockchain:stop --scope @tasit/contracts --stream",
"blockchain:scoped:watch": "npx lerna run blockchain:watch --scope @tasit/contracts --stream",
"blockchain:start": "npx buidler node > buidler-evm.log &",
"blockchain:stop": "kill `ps ax|grep 'buidler node'|grep -v grep| awk '{print $1}'` 2> /dev/null; exit 0",
"blockchain:watch": "tail -f -n 100 buidler-evm.log",
"compile:contracts": "npx lerna run compile:contracts --scope @tasit/contracts --stream",
"compile:contracts:rinkeby": "npx lerna run compile:rinkeby --scope @tasit/contracts --stream",
"deploy:contracts": "npx lerna run deploy:contracts --scope @tasit/contracts --stream",
"prepare:blockchain": "npm run blockchain:stop && npm run blockchain:start && npm run compile:contracts && npm run deploy:contracts",
"pretest": "npm run prepare:blockchain",
"remove:package-lock": "npx lerna exec --stream --concurrency 1 -- rm -f package-lock.json",
"test": "npx lerna run test --stream --concurrency 1",
"posttest": "npm run blockchain:stop",
"start": "npm run clean:all && npm run bootstrap && npm run prepare:blockchain",
"lint": "npx eslint './packages/*/src/{*.js,*.ts,**/*.js,**/*.ts,**/*.jsx,**/*.tsx}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tasitlabs/tasit-sdk.git"
},
"keywords": [
"dapp",
"ethereum",
"react",
"native"
],
"author": "Tasit Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/tasitlabs/tasit-sdk/issues"
},
"homepage": "https://tasit.dev",
"engines": {
"node": ">=12.18.0",
"npm": ">=6.14.5"
},
"dependencies": {}
}