-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "cip-72",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "nodemon --watch src --watch bin bin/index.js",
"lint": "eslint ./bin/**/*.js",
"lint:fix": "yarn lint --fix",
"start": "node bin/index.js",
"restore-mnemonic-wallet": "./scripts/restore-mnemonic-wallet.sh",
"setup-new-wallet": "./scripts/setup-new-wallet.sh"
},
"dependencies": {
"@blockfrost/blockfrost-js": "^5.4.0",
"ajv": "^8.12.0",
"axios": "^1.6.2",
"blake2": "^4.1.1",
"canonicalize": "^2.0.0",
"cbor": "^8.1.0",
"chalk": "^5.2.0",
"dotenv": "^16.0.3",
"figlet": "^1.5.2",
"inquirer": "^9.1.4",
"lodash": "^4.17.21",
"rimraf": "^5.0.5",
"shelljs": "^0.8.5",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"yaml": "^2.2.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.1.2",
"esm": "^3.2.25",
"nodemon": "^3.0.3",
"prettier": "^3.1.1"
},
"bin": {
"cip72-cli": "./bin/index.js"
}
}