-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.62 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": "paraspell",
"private": true,
"type": "module",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.8.5",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-tsdoc": "^0.3.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=20"
},
"resolutions": {
"@polkadot/types-codec": "^12.4.2",
"@polkadot/api": "^12.4.2",
"@crypto-dex-sdk/chain": "0.1.2"
},
"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 updateAssets",
"run:updateRouterAssets": "pnpm --filter=xcm-router updateAssets",
"run:updatePallets": "pnpm --filter=sdk updatePallets",
"run:updateEds": "pnpm --filter=sdk updateEds"
},
"packageManager": "[email protected]"
}