forked from digicatapult/sqnc-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "@digicatapult/dscp-ipfs",
"version": "2.9.51",
"description": "IPFS node for use in DSCP",
"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/dscp-ipfs.git"
},
"engines": {
"node": ">=18.x.x",
"npm": ">=9.x.x"
},
"keywords": [
"DSCP"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/dscp-ipfs/issues"
},
"homepage": "https://github.com/digicatapult/dscp-ipfs#readme",
"dependencies": {
"@polkadot/api": "^10.9.1",
"axios": "^1.5.0",
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"pino": "^8.15.0",
"pino-http": "^8.4.0",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.11",
"c8": "^8.0.1",
"chai": "^4.3.8",
"delay": "^6.0.0",
"depcheck": "^1.4.5",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"formdata-node": "^5.0.1",
"go-ipfs": "^0.22.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"pino-colada": "^2.2.2",
"prettier": "^3.0.2",
"sinon": "^15.2.0"
}
}