-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.45 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
{
"name": "tezos-starter-kit",
"version": "1.0.0",
"description": "",
"devDependencies": {
"@taquito/taquito": "^6.2.0-beta.1",
"array-chunk": "^1.0.0",
"array-chunk-equals": "^1.0.1",
"big-number": "^2.0.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"distribute-array": "0.0.3",
"eztz.js": "git+https://github.com/TezTech/eztz.git",
"fs-extra": "^9.0.0",
"json-format": "^1.0.1",
"lodash": "^4.17.15",
"onchange": "^7.0.2",
"promise-retry": "^1.1.1",
"rimraf": "^3.0.2",
"truffle": "^5.3.0-tezos.2"
},
"scripts": {
"clean": "rm -rf ./build",
"test": "truffle test",
"test:clean": "npm run clean && npm run test",
"test:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -- npm run test:clean",
"benchmark": "npm run compile && npm run test",
"benchmark:clean": "npm run clean && npm run benchmark",
"benchmark:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -- npm run benchmark:clean",
"compile": "truffle compile",
"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/**' -- 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_sandbox.sh",
"sandbox:kill": "./scripts/sandbox/kill_sandbox.sh",
"sandbox:restart": "./scripts/sandbox/restart_sandbox.sh",
"env:start": "npm run sandbox:start -- carthage && npm run tools:start bbbox",
"env:kill": "npm run sandbox:kill -- carthage && npm run tools:kill bbbox",
"env:restart": "npm run sandbox:restart -- carthage && npm run tools:restart bbbox",
"env:clean": "npm run tools:kill bbbox && npm run tools:clean bbbox",
"commit": "git-cz"
},
"author": "[email protected]",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}