forked from w3f/1k-validators-be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.54 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
{
"name": "@1kv/gateway",
"version": "3.2.2",
"description": "Services for running the Thousand Validator Program.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc --build tsconfig.json",
"build:prod": "node esbuild.mjs --prod",
"clean": "../../node_modules/.bin/rimraf ./build tsconfig.tsbuildinfo combined.log",
"clean:build": "yarn clean && yarn build",
"create-config-kusama-microservice": "cp config/sample.json ./config/main.json",
"create-config-kusama-microservice-dev": "cp config/sample.json ./config/main.json",
"create-config-polkadot-microservice": "cp config/sample.json ./config/main.json",
"create-config-polkadot-microservice-dev": "cp config/sample.json ./config/main.json",
"docker": "docker-compose rm -f; docker-compose build --no-cache; docker-compose up -d",
"lint": "../../node_modules/.bin/eslint 'src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "../../node_modules/.bin/eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"start": "NODE_OPTIONS='--max-old-space-size=4096' ts-node --es-module-specifier-resolution=node src/run.ts start",
"start:watch": "NODE_OPTIONS='--max-old-space-size=6096' nodemon --watch build --exec node --es-module-specifier-resolution=node build/run.js",
"start:dev": "concurrently \"tsc -w\" \"yarn start:watch\"",
"js:start": "NODE_OPTIONS='--max-old-space-size=6096' node --es-module-specifier-resolution=node build/run.js start"
},
"author": "Web3 Foundation <[email protected]>",
"license": "GPL-3.0"
}