-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "omnichain",
"version": "1.0.0",
"description": "Omnichain: A decentralized, scalable, and secure blockchain platform",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node src/index.ts",
"test": "jest",
"docs": "npx typedoc --out docs/ src/"
},
"keywords": ["blockchain", "decentralized", "scalable", "secure"],
"author": "KOSASIH",
"license": "Apache 2.0",
"dependencies": {
"typescript": "^4.1.3",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"inquirer": "^8.2.1",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"fs-extra": "^10.0.0",
"path": "^0.12.7",
"child_process": "^1.0.2",
"crypto": "^1.0.1",
"elliptic": "^6.5.3",
"hash-sum": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^14.14.37",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"prettier": "^2.3.2",
"typedoc": "^0.20.14"
}
}