-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "ee374",
"version": "1.0.0",
"description": "Full Node Implementation for Marabu",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cathy-zhoubn/ee374.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cathy-zhoubn/ee374/issues"
},
"homepage": "https://github.com/cathy-zhoubn/ee374#readme",
"dependencies": {
"@noble/ed25519": "^1.6.0",
"bluebird": "^3.7.2",
"concurrently": "^7.1.0",
"custom-event": "^1.0.1",
"fast-sha256": "^1.3.0",
"json-canonicalize": "^1.0.4",
"nodemon": "^2.0.15",
"pg": "^8.7.3",
"queue": "^6.0.2",
"stack-typescript": "^1.0.4",
"threads": "^1.7.0",
"tiny-worker": "^2.3.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@types/node": "^17.0.25",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}