-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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": "hyperchain-starter-kit",
"version": "1.0.0",
"description": "Tools to run a hyperchain on Aeternity",
"main": "dist/index.js",
"bin": "dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"dev": "node --loader ts-node/esm src/index.ts",
"dev-watch": "nodemon -e ts -w ./src -x pnpm run dev"
},
"keywords": [
"aeternity",
"hyperchain"
],
"author": "Aeternity Crypto Foundation",
"license": "MIT",
"devDependencies": {
"@types/json-bigint": "^1.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"openapi-typescript": "^6.2.7",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@aeternity/aepp-calldata": "^1.8.0",
"@aeternity/aepp-sdk": "^14.0.0",
"@scure/bip39": "^1.2.0",
"@types/js-yaml": "^4.0.5",
"axios": "^1.4.0",
"commander": "^10.0.1",
"js-yaml": "^4.1.0",
"json-bigint": "^1.0.0",
"json-schema-to-typescript": "^13.0.2",
"ts-to-zod": "^3.1.2",
"tweetnacl": "^1.0.3",
"tweetnacl-auth": "^1.0.1",
"unique-names-generator": "^4.7.1",
"zod": "^3.21.4"
}
}