-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.86 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
{
"name": "tezos-starter-kit",
"version": "1.0.0",
"description": "",
"devDependencies": {
"@taquito/signer": "^7.0.1-beta.0",
"@taquito/taquito": "^6.3.5-beta.0",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.2.0",
"eztz.js": "git+https://github.com/TezTech/eztz.git",
"fs-extra": "^9.0.0",
"ganache-cli": "^6.11.0-tezos.0",
"husky": "^4.3.5",
"lodash": "^4.17.20",
"onchange": "^7.0.2",
"promise-retry": "^1.1.1",
"random-bytes": "^1.0.0",
"rimraf": "^3.0.2",
"truffle": "^5.5.0-tezos.4"
},
"scripts": {
"clean": "rm -rf ./build/contracts",
"clean:all": "rm -rf ./build",
"test": "truffle test",
"test:clean": "npm run clean && npm run test",
"test:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -e '**/*.tz' -- npm run test:clean",
"compile": "truffle compile && npm run compile:lambdas-all",
"compile:contracts": "truffle compile",
"compile:contracts:clean": "npm run clean && npm run compile:contracts",
"compile:contracts:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -- npm run compile:contracts:clean",
"compile:clean": "npm run clean && npm run compile",
"compile:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -- npm run compile:clean",
"migrate": "truffle migrate",
"migrate:clean": "npm run clean && npm run migrate",
"migrate:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -e '**/*.tz' -- npm run migrate:clean",
"tools:start": "node ./scripts/tools.js start",
"tools:kill": "node ./scripts/tools.js kill",
"tools:update": "node ./scripts/tools.js update",
"tools:clean": "node ./scripts/tools.js clean",
"tools:init": "node ./scripts/tools.js init",
"tools:restart": "node ./scripts/tools.js restart",
"wait-for-sandbox": "node ./scripts/sandbox/waitForNetwork.js",
"sandbox:start": "./scripts/sandbox/start_ganache-cli.sh",
"fix-ligo-version": "./scripts/fix-ligo-version.sh",
"env:start": "npm run tools:start bbbox && npm run sandbox:start -- --host 0.0.0.0",
"env:kill": "npm run tools:kill bbbox",
"env:restart": "npm run tools:restart bbbox",
"env:clean": "npm run tools:kill bbbox && npm run tools:clean bbbox",
"commit": "git-cz",
"compile:lambda": "node scripts/lambdaCompiler/compileLambdaCli.js",
"compile:lambda:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -e '**/*.tz' -- npm run compile:lambda",
"compile:lambda-parameter": "node scripts/lambdaCompiler/testPackValueCli.js",
"compile:lambdas-all": "node scripts/lambdaCompiler/compileAllLambdas.js"
},
"author": "[email protected]",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}