-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
50 lines (50 loc) · 1.9 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
{
"name": "@chainsafe/multix",
"private": true,
"workspaces": [
"packages/*"
],
"description": "An interface to easily manage complex multisigs.",
"engines": {
"node": ">=16.10"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/ChainSafe/Multix"
},
"keywords": [
"polkadot",
"multisig"
],
"license": "Apache-2.0",
"scripts": {
"docker:db": "docker compose up -d db",
"docker:down": "docker compose down",
"build": "yarn workspaces foreach run build",
"build:indexer": "cd squid && npm run codegen && npm run typegen && npm run build && npm run db:migrate",
"lint": "yarn workspaces foreach run lint",
"lint:fix": "yarn workspaces foreach run lint:fix",
"formatAll": "prettier --write .",
"start:chopsticks-test-build-and-launch-all": "concurrently --kill-others 'npm run start:chopsticks' 'npm run ui:start-with-chopsticks' 'npm run docker:down && npm run docker:db && npm run build:indexer && npm run indexer:start:chopsticks-local' 'npm run start:graphql-server'",
"start:chopsticks": "npx --yes @acala-network/[email protected] --config chopsticks-config.yml",
"start:graphql-server": "cd squid && npm run start:graphql-server",
"indexer:start:chopsticks-ci": "cd squid && npm run start:chopsticks-ci",
"indexer:start:chopsticks-local": "cd squid && npm run start:chopsticks-local",
"ui:start": "yarn workspace multix-ui start",
"ui:lint": "yarn workspace multix-ui lint",
"ui:test": "yarn workspace multix-ui test",
"ui:start-with-chopsticks": "yarn workspace multix-ui start-with-chopsticks"
},
"devDependencies": {
"concurrently": "^9.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2"
},
"resolutions": {
"graphql": "^16.0.0",
"@polkadot/util-crypto": "12.5.1",
"@polkadot/util": "12.5.1"
}
}