-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (58 loc) · 2.15 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
{
"name": "@conet.project/conet-proxy",
"version": "0.5.0",
"license": "UNLICENSED",
"files": [
"./build"
],
"private": false,
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"lint": "echo 'no linter available'",
"test": "echo 'no linter available'",
"build": "tsc --project ./tsconfig.build.json && cp src/favicon.ico build/localServer/workers/ && cp -r src/localServer/workers/* build/localServer/workers/ && cp src/index.d.ts build",
"clean": "rm -rf ./node_modules ./build",
"local": "node build/localServer/index",
"buildRun": "tsc --project ./tsconfig.build.json && cp src/favicon.ico build/localServer/workers/ && cp src/localServer/workers/utilities/*.js build/localServer/workers/utilities && cp src/index.d.ts build && node build/localServer/index",
"build:docker": "docker buildx build --platform linux/amd64,linux/arm64 --file Dockerfile . --push --tag conetnetwork/conet-daemon:latest",
"build:test":"tsc --project ./tsconfig.build2.json"
},
"dependencies": {
"async": "^3.2.6",
"colors": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.21.1",
"fs-extra": "^11.2.0",
"uuid": "^11.0.2",
"yargs": "^17.7.2",
"hexdump-nodejs": "^0.1.0",
"ip": "^2.0.1",
"ethers": "^6.13.4",
"openpgp": "^5.11.2",
"eth-crypto": "^2.7.0"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/pouchdb": "^6.4.2",
"@types/uuid": "^10.0.0",
"@types/openpgp": "^4.4.22",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"jszip": "^3.10.1",
"pouchdb": "^9.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"bin": {
"conet-platform": "./build/index.js"
}
}