-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "paraspell",
"private": true,
"type": "module",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22"
},
"resolutions": {
"@polkadot/types-codec": "^15.0.2",
"@polkadot/api": "^15.0.2",
"@polkadot/types": "^15.0.2",
"@crypto-dex-sdk/chain": "0.1.2",
"react-is": "19.0.0"
},
"scripts": {
"compile": "turbo run compile",
"format:check": "turbo run format:check",
"format:write": "turbo run format:write",
"lint:check": "turbo run lint:check",
"lint": "turbo run lint",
"test": "turbo run test",
"test:cov": "turbo run test:cov",
"test:watch": "turbo run test:watch",
"test:integration": "turbo run test:integration",
"test:e2e": "turbo run test:e2e",
"build": "turbo run build",
"run:playground": "pnpm --filter playground dev",
"run:api": "pnpm --filter xcm-api start:dev",
"run:lightspell-site": "pnpm --filter lightspell-site dev",
"run:paraspell-site": "pnpm --filter site dev",
"run:updateAssets": "pnpm --filter sdk-core updateAssets",
"run:updateRouterAssets": "pnpm --filter xcm-router updateAssets",
"run:updatePallets": "pnpm --filter sdk-core updatePallets"
},
"packageManager": "pnpm@9.15.2"
}