-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "axelarjs",
"version": "0.1.0",
"description": "Axelar Network foundations for javascript/Typescript based applications",
"repository": {
"type": "git",
"url": "git+https://github.com/axelarnetwork/axelarjs"
},
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"clean": "turbo run clean",
"build:packages": "turbo run build --filter=\"./packages/*\"",
"test": "turbo run test",
"test:ci": "CI=true turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"compile": "turbo run compile",
"format": "prettier --write .",
"storybook": "pnpm -C ./packages/ui run storybook ",
"build-storybook": "turbo run build-storybook",
"docgen": "turbo run docgen",
"deploy:docs": "turbo run deploy:docs",
"dev:maestro": "pnpm -C ./apps/maestro run dev",
"dev:registry": "pnpm -C ./apps/registry run dev",
"changeset": "changeset",
"changeset:release": "pnpm build:packages && changeset publish",
"changeset:release-snap": "pnpm build:packages && changeset publish --snapshot",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"changeset:snap": "changeset version --snapshot snap",
"cs": "changeset",
"cs:release": "pnpm changeset:release",
"cs:release-snap": "pnpm changeset:release-snap",
"cs:version": "pnpm changeset:version",
"cs:snap": "pnpm changeset:snap",
"cs:publish": "pnpm changeset:publish",
"e2e:maestro": "pnpm -C ./apps/maestro run ci:e2e"
},
"keywords": [
"Axelar Network",
"Cross-chain",
"Interoperability"
],
"author": "",
"license": "LicenseRef-LICENSE",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@tsconfig/strictest": "^2.0.4",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"package-json": "^8.1.1",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.5",
"turbo": "^1.13.0",
"typescript": "^5.4.3"
},
"pnpm": {
"overrides": {
"postcss@<8.4.31": ">=8.4.31",
"undici@<5.26.2": ">=5.26.2",
"axios@>=0.8.1 <1.6.0": ">=1.6.0",
"@adobe/css-tools@<4.3.2": ">=4.3.2",
"follow-redirects@<1.15.4": ">=1.15.4",
"vite@>=5.0.0 <=5.0.11": ">=5.0.12"
}
}
}