forked from anythread/gsoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
{
"name": "@solarpunkltd/gsoc",
"version": "0.2.3",
"description": "Graffiti Several Owner Chunk implementation on Swarm network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "rimraf dist && npm run compile:types && npm run compile",
"compile": "tsc",
"compile:types": "tsc --emitDeclarationOnly --declaration --skipLibCheck",
"dev": "npm run compile -- --watch --env mode=development",
"lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" && prettier --check \"src/**/*.ts\"",
"check:types": "tsc --project tsconfig.json --skipLibCheck",
"test": "jest --config=jest.config.ts --runInBand --verbose",
"bee": "npx @fairdatasociety/fdp-play start --detach --fresh"
},
"keywords": [
"gsoc",
"anythread",
"swarm",
"decentralized",
"information-signaling",
"p2p"
],
"author": "Viktor Levente Tóth @nugaon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/anythread/gsoc/issues"
},
"homepage": "https://github.com/anythread/gsoc#readme",
"dependencies": {
"@nugaon/bmt-js": "^3.0.2",
"axios": "^1.7.2",
"elliptic": "^6.5.6",
"isomorphic-ws": "^5.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}