-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "halive",
"version": "1.0.0",
"description": "HAF-based Alive Protocol streams indexer and API server.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"server": "node dist/server.js",
"compile": "tsc; cp -r src/sql dist",
"dev": "node --loader ts-node/esm src/index.ts",
"dev-server": "node --loader ts-node/esm src/server.ts",
"clean": "rm -rf dist/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aliveprotocol/halive.git"
},
"author": "techcoderx",
"license": "ISC",
"bugs": {
"url": "https://github.com/aliveprotocol/halive/issues"
},
"homepage": "https://github.com/aliveprotocol/halive#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"is-ipfs": "^8.0.1",
"log4js": "^6.9.1",
"multiformats": "^12.0.1",
"pg": "^8.11.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/pg": "^8.10.2",
"@types/yargs": "^17.0.24",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}