-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (63 loc) · 2.29 KB
/
package.json
File metadata and controls
66 lines (63 loc) · 2.29 KB
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
66
{
"name": "@conet.project/conet-proxy",
"version": "1.1.3",
"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": "yarn install;tsc --project ./tsconfig.build.json && cpr src/localServer/workers build/localServer/workers -o && copyfiles -u 1 src/index.d.ts build && copyfiles -u 1 src/favicon.ico build/localServer/workers/",
"clean": "rimraf ./node_modules ./build",
"local": "node build/localServer/index",
"buildRun": "tsc --project ./tsconfig.build.json && copyfiles -u 1 src/favicon.ico build/localServer/workers/ && copyfiles -u 2 src/localServer/workers/utilities/*.js build/localServer/workers/utilities && copyfiles -u 1 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": "^5.1.0",
"fs-extra": "^11.3.0",
"uuid": "^13.0.0",
"yargs": "18.0.0",
"hexdump-nodejs": "^0.1.0",
"ip": "^2.0.1",
"ethers": "^6.15.0",
"openpgp": "^5.11.2",
"eth-crypto": "^3.1.0",
"axios": "^1.11.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/async": "^3.2.25",
"@types/express": "^5.0.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"@types/pouchdb": "^6.4.2",
"@types/uuid": "^11.0.0",
"@types/openpgp": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"jszip": "^3.10.1",
"pouchdb": "^9.0.0",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"rimraf": "^6.0.1",
"cpr": "^3.0.1",
"copyfiles": "^2.4.1"
},
"bin": {
"conet-platform": "./build/index.js"
}
}