-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.95 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
{
"name": "tezos-starter-kit",
"version": "1.0.0",
"description": "",
"devDependencies": {
"@taquito/taquito": "^6.2.0-beta.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eztz.js": "git+https://github.com/TezTech/eztz.git",
"fs-extra": "^9.0.0",
"lodash": "^4.17.19",
"onchange": "^7.0.2",
"promise-retry": "^1.1.1",
"rimraf": "^3.0.2",
"truffle": "^5.5.0-tezos.4"
},
"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",
"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_ganache-cli.sh",
"env:start": "npm run tools:start bbbox && npm run sandbox:start",
"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"
},
"author": "matej.sima@stove-labs.com",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"ganache-cli": "^6.11.0-tezos.0"
}
}