-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "ziya-chain-v2",
"version": "1.0.0",
"description": "Ethereum like PoW based blockchain",
"main": "index.js",
"scripts": {
"start": "ts-node ./api/index.ts",
"dev": "nodemon ./api/index.ts",
"dev-peer": "nodemon ./api/index.ts --peer",
"api-test": "ts-node ./api-test.ts",
"deneme": "ts-node ./tmp.ts",
"interpreter": "ts-node ./interpreter/index.ts",
"test": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zicoz18/ziya-chain-v2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zicoz18/ziya-chain-v2/issues"
},
"homepage": "https://github.com/zicoz18/ziya-chain-v2#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.182",
"@types/pubnub": "^7.0.0",
"@types/uuid": "^8.3.4",
"nodemon": "^2.0.19",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"elliptic": "^6.5.4",
"express": "^4.18.1",
"jest": "^28.1.2",
"js-sha3": "^0.8.0",
"lodash": "^4.17.21",
"pubnub": "^7.2.0",
"ts-jest": "^28.0.5",
"uuid": "^8.3.2"
}
}