-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.07 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "grass-protocol",
"version": "0.0.0",
"packageManager": "pnpm@8.6.7",
"license": "LGPL-2.1-or-later",
"repository": "https://github.com/grassprotocol/grass-frontend.git",
"engines": {
"node": ">=18.x"
},
"scripts": {
"build-apps": "turbo run build --filter={./apps/*}[HEAD^1]...",
"build-swap-app": "turbo run build --filter=swap...",
"build-pool-app": "turbo run build --filter=pool...",
"build-referrals-app": "turbo run build --filter=referrals...",
"build-analytics-app": "turbo run build --filter=analytics...",
"build-packages": "turbo run build --filter={./packages/**}...",
"build": "turbo run build",
"build:ci": "turbo run build --filter=[HEAD^1]",
"dev": "turbo run dev --no-cache --concurrency=50 --parallel --continue",
"generate": "turbo run generate",
"generate:ci": "turbo run generate --filter=[HEAD^1]",
"lint": "turbo run lint --parallel",
"lint-packages": "turbo run lint --parallel --filter={./packages/**}...",
"lint:ci": "turbo run lint --parallel --filter=[HEAD^1]",
"clean": "turbo run clean && rm -rf node_modules",
"test-apps": "turbo run test --filter={./apps/*}[HEAD^1]...",
"test-packages": "turbo run test --filter={./packages/**}[HEAD^1]...",
"test": "turbo run test --parallel",
"test:ci": "turbo run test --parallel --filter=[HEAD^1]",
"i18n:extract": "lingui extract",
"i18n:compile": "pnpm run i18n:extract && lingui compile",
"i18n:gpt-translate": "dotenv -- esno scripts/gpt-trans-locales.ts && pnpm run i18n:compile",
"prepare": "pnpm run i18n:compile"
},
"devDependencies": {
"@lingui/cli": "^4.3.0",
"@types/node": "^18.17.1",
"@grass-protocol/eslint-config": "workspace:*",
"@grass-protocol/graph-client": "link:packages/graph-client/src",
"chatgpt": "^5.2.5",
"dotenv-cli": "^7.2.1",
"eslint": "^8.46.0",
"esno": "^0.17.0",
"fast-glob": "^3.3.1",
"ora": "^6.3.1",
"pathe": "^1.1.1",
"turbo": "1.10.12",
"undici": "^5.22.1"
},
"resolutions": {
"@polkadot/api": "^10.9.1",
"@polkadot/api-augment": "^10.9.1",
"@polkadot/api-base": "^10.9.1",
"@polkadot/api-contract": "^10.9.1",
"@polkadot/api-derive": "^10.9.1",
"@polkadot/hw-ledger": "^12.3.2",
"@polkadot/keyring": "^12.3.2",
"@polkadot/networks": "^12.3.2",
"@polkadot/phishing": "^0.21.5",
"@polkadot/rpc-augment": "^10.9.1",
"@polkadot/rpc-core": "^10.9.1",
"@polkadot/rpc-provider": "^10.9.1",
"@polkadot/types": "^10.9.1",
"@polkadot/types-augment": "^10.9.1",
"@polkadot/types-codec": "^10.9.1",
"@polkadot/types-create": "^10.9.1",
"@polkadot/types-known": "^10.9.1",
"@polkadot/types-support": "^10.9.1",
"@polkadot/util": "^12.3.2",
"@polkadot/util-crypto": "^12.3.2",
"@polkadot/wasm-crypto": "^7.2.1",
"@polkadot/x-bigint": "^12.3.2",
"@polkadot/x-fetch": "^12.3.2",
"@polkadot/x-global": "^12.3.2",
"@polkadot/x-randomvalues": "^12.3.2",
"@polkadot/x-textdecoder": "^12.3.2",
"@polkadot/x-textencoder": "^12.3.2",
"@polkadot/x-ws": "^12.3.2"
}
}