-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 2.17 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
{
"name": "root",
"contributors": [
"David Lan <[email protected]> (https://github.com/lanhaoxiang/)",
"Samlior <[email protected]> (https://github.com/samlior/)",
"sspin <[email protected]> (https://github.com/bijianing97/)"
],
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"npm": ">=7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^7.0.4",
"eslint": "^6.8.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "1.0.0-beta.6",
"ts-node": "^10.8.1"
},
"scripts": {
"preinstall": "npm run checkNpmVersion",
"postinstall": "npm run build -ws",
"prepare": "node node_modules/husky/lib/bin.js install",
"checkNpmVersion": "./scripts/check-npm-version.sh",
"build:contracts": "npm run build -w @rei-network/contracts",
"build:structure": "npm run build -w @rei-network/structure",
"build:blockchain": "npm run build -w @rei-network/blockchain",
"build:cli": "npm run build -w @rei-network/cli",
"build:common": "npm run build -w @rei-network/common",
"build:core": "npm run build -w @rei-network/core",
"build:database": "npm run build -w @rei-network/database",
"build:network": "npm run build -w @rei-network/network",
"build:rpc": "npm run build -w @rei-network/rpc",
"build:utils": "npm run build -w @rei-network/utils",
"build:vm": "npm run build -w @rei-network/vm",
"build:wallet": "npm run build -w @rei-network/wallet",
"build:api": "npm run build -w @rei-network/api",
"build:ipc": "npm run build -w @rei-network/ipc",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/package-lock.json && npm run clean:build",
"clean:build": "rm -rf packages/*/dist && rm -rf rm -rf packages/*/*.tsbuildinfo && cd packages/contracts && npm run clean:build",
"clean:buildinfo": "rm -rf rm -rf packages/*/*.tsbuildinfo",
"lint": "eslint packages/*/src/**.ts packages/*/test/**.ts --format=codeframe",
"lint:fix": "eslint packages/*/src/**.ts packages/*/test/**.ts --fix"
}
}