-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "s",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/repo.git"
},
"author": "e1",
"license": "ISC",
"bugs": {
"url": "https://github.com/repo/issues"
},
"homepage": "https://github.com/repo#readme",
"engines": {
"node": "^14.17.1",
"yarn": "^1.22.10"
},
"dependencies": {
"@taquito/signer": "^9.1.1",
"@taquito/taquito": "^9.2.0",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"mocha": "^9.0.0"
},
"scripts": {
"clean": "rm -rf ./builds/",
"migrate": "node scripts/cli.js migrate",
"compile": "yarn clean && node scripts/cli.js compile",
"start-sandbox": "docker run --rm --name dev-sandbox -e flextesa_node_cors_origin='*' -e block_time=1 --detach -p 8732:20000 tqtezos/flextesa:20211119 hangzbox start",
"stop-sandbox": "docker kill dev-sandbox",
"test": "mocha 'tests/*.js' --timeout 150000"
},
"target": "ES6"
}