-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 829 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 829 Bytes
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
{
"name": "ipfs-tracker",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon",
"test": "mocha ./test/**/*",
"test:watch": "mocha --parallel --watch ./test/**/*",
"test:watch:only": "mocha --parallel --watch",
"test:nodemon": "nodemon --config ./test/nodemon.json"
},
"dependencies": {
"@keyv/sqlite": "4.0.1",
"@multiformats/multiaddr": "12.3.1",
"cors": "2.8.5",
"debug": "2.6.9",
"dotenv": "16.4.5",
"express": "5.0.0-beta.3",
"ip": "2.0.1",
"keyv": "5.0.1",
"morgan": "1.9.1",
"multiformats": "13.2.2",
"node-schedule": "2.1.1",
"prom-client": "15.1.3"
},
"devDependencies": {
"chai": "5.1.1",
"mocha": "10.7.3",
"nodemon": "3.1.4",
"supertest": "7.0.0"
}
}