-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ipfs-node",
"version": "0.0.1",
"description": "IPFS decentralized file storage and transfers",
"main": "dist/index.js",
"private": true,
"type": "module",
"scripts": {
"build": "npx rimraf dist; tsc",
"start": "node dist/index.js",
"dev": "nodemon",
"prepare": "husky",
"bump-patch": "npm version patch",
"bump-minor": "npm version minor",
"bump-major": "npm version major"
},
"author": "ADAMANT Foundation <[email protected]>",
"license": "GPLv3",
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.8",
"eslint": "^8.57.0",
"gts": "^5.3.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"nodemon": "^3.1.4",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^15.1.0",
"@helia/unixfs": "^3.0.7",
"@libp2p/bootstrap": "^10.1.4",
"@libp2p/peer-id": "^4.2.3",
"@libp2p/tcp": "^9.1.4",
"blockstore-fs": "^1.1.11",
"cors": "^2.8.5",
"cron": "^3.1.7",
"datastore-fs": "^9.1.9",
"express": "^4.19.2",
"go-get-folder-size": "^0.5.5",
"helia": "^4.2.5",
"json5": "^2.2.3",
"multer": "^1.4.5-lts.1",
"multiformats": "^13.2.2",
"pino": "^9.3.2",
"pino-http": "^10.2.0"
},
"lint-staged": {
"*.(ts|js)": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0"
}
}