-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
65 lines (65 loc) · 2.64 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
57
58
59
60
61
62
63
64
65
{
"name": "@layerzerolabs/devtools",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "$npm_execpath turbo run build",
"clean": "$npm_execpath turbo run clean",
"dev": "$npm_execpath turbo run dev",
"lint": "$npm_execpath turbo run lint",
"lint:fix": "$npm_execpath turbo run lint:fix",
"logs": "docker compose logs -f",
"prepare": "husky install",
"prune": "git clean -dfX",
"registry:logs": "docker compose -f docker-compose.registry.yaml logs -f",
"registry:publish": "docker compose -f docker-compose.registry.yaml run --build --rm $DOCKER_COMPOSE_ARGS publish",
"registry:start": "docker compose -f docker-compose.registry.yaml up npm-registry --wait $DOCKER_COMPOSE_ARGS",
"registry:stop": "docker compose -f docker-compose.registry.yaml down",
"release:publish": "$npm_execpath changeset publish",
"release:version": "$npm_execpath changeset version && $npm_execpath install --lockfile-only --prefer-offline --ignore-scripts",
"start": "docker compose -f docker-compose.yaml -f docker-compose.local.yaml up network-britney network-vengaboys network-tango network-ton --wait $DOCKER_COMPOSE_ARGS",
"stop": "docker compose down",
"test": "$npm_execpath turbo run test $DOCKER_COMPOSE_RUN_TESTS_TURBO_ARGS",
"test:ci": "docker compose run --build --rm $DOCKER_COMPOSE_ARGS tests",
"test:local": ". bin/env && $npm_execpath start && $npm_execpath test",
"test:user": "docker compose -f docker-compose.registry.yaml run --build --rm $DOCKER_COMPOSE_ARGS tests"
},
"lint-staged": {
"**/*.{js,ts,tsx,json}": [
"pnpm prettier --write --ignore-unknown",
"pnpm eslint --fix"
]
},
"resolutions": {
"es5-ext": "git://github.com/LayerZero-Labs/es5-ext",
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1",
"rustbn.js": "^0.3.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@layerzerolabs/prettier-config-next": "^2.3.39",
"@types/node": "~18.18.14",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-turbo": "^1.12.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"turbo": "1.11.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.16.0"
}
}