-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
27 lines (27 loc) · 1.47 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
{
"name": "@1kv/telemetry",
"version": "3.3.5",
"description": "Services for running the Thousand Validator Program.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc --build tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./build tsconfig.tsbuildinfo combined.log",
"clean:build": "yarn clean && yarn build",
"docker": "docker-compose rm -f; docker-compose build --no-cache; docker-compose up -d",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"start": "NODE_OPTIONS='--max-old-space-size=4096' ts-node src/run.ts start",
"start:watch": "NODE_OPTIONS='--max-old-space-size=6096' nodemon --watch build --exec node build/run.js",
"start:dev": "concurrently \"tsc -w\" \"yarn start:watch\"",
"js:start": "NODE_OPTIONS='--max-old-space-size=6096' node build/run.js start",
"test": "SKIP_MD5=true LOG_LEVEL=info ../../node_modules/.bin/vitest --config vitest.int.config.mts --run --no-file-parallelism",
"test:int": "SKIP_MD5=true LOG_LEVEL=info ../../node_modules/.bin/vitest --config vitest.int.config.mts --run --no-file-parallelism",
"test:int:silent": "SKIP_MD5=true LOG_LEVEL=warn ../../node_modules/.bin/vitest --config vitest.int.config.mts --run --no-file-parallelism"
},
"author": "Web3 Foundation <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"@1kv/common": "*"
}
}