-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
65
{
"name": "@digicatapult/sqnc-ipfs",
"version": "3.0.3",
"description": "IPFS node for use in SQNC",
"main": "app/index.js",
"type": "module",
"scripts": {
"test": "NODE_ENV=test mocha --config ./test/mocharc.cjs ./test",
"test:integration": "NODE_ENV=test mocha --config ./test/mocharc.cjs ./test/integration",
"test:unit": "NODE_ENV=test mocha --config ./test/mocharc-unit.cjs ./test/unit",
"lint": "eslint . --fix",
"depcheck": "depcheck",
"start": "node app/index.js",
"dev": "NODE_ENV=dev nodemon app/index.js | pino-colada",
"coverage": "c8 npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/sqnc-ipfs.git"
},
"engines": {
"node": "^22.x.x",
"npm": "^10.x.x"
},
"keywords": [
"SQNC"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/sqnc-ipfs/issues"
},
"homepage": "https://github.com/digicatapult/sqnc-ipfs#readme",
"dependencies": {
"@polkadot/api": "^15.2.1",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"envalid": "^8.0.0",
"express": "^4.21.2",
"express-prom-bundle": "^8.0.0",
"pino": "^9.6.0",
"pino-http": "^10.3.0",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"c8": "^10.1.3",
"chai": "^5.1.2",
"delay": "^6.0.0",
"depcheck": "^1.4.7",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"formdata-node": "^6.0.3",
"kubo": "^0.32.1",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"nodemon": "^3.1.9",
"pino-colada": "^2.2.2",
"prettier": "^3.4.2",
"sinon": "^19.0.2"
}
}