-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 2.04 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": "@conet.project/conet-game",
"version": "0.0.1",
"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 && cp -r src/localServer/* build/localServer/",
"clean": "rm -rf ./node_modules ./build",
"local": "node build/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 create --name conet-platform --use --bootstrap && docker buildx build --push --platform linux/amd64,linux/arm64 --tag conetnetwork/conet:platform ."
},
"dependencies": {
"async": "^3.2.5",
"colors": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"fs-extra": "^11.2.0",
"uuid": "^10.0.0",
"yargs": "^17.7.2",
"hexdump-nodejs": "^0.1.0",
"ip": "^2.0.1",
"ethers": "^6.13.1",
"eth-crypto": "^2.6.0"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/pouchdb": "^6.4.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^9.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"jszip": "^3.10.1",
"openpgp": "^5.11.2",
"pouchdb": "^9.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"bin": {
"conet-platform": "./build/index.js"
}
}