-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
71 lines (71 loc) · 2.24 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
{
"name": "root",
"private": true,
"description": "XChainJS Chain Clients MonoRepo",
"packageManager": "[email protected]",
"engines": {
"yarn": ">=1.4.0"
},
"workspaces": [
"packages/*",
"examples/*",
"tools/*"
],
"scripts": {
"clean": "turbo run clean && rm -rf ./.turbo",
"clean:nodemodules": "rm -rf ./packages/*/node_modules && rm -rf ./node_modules",
"build": "turbo run build --cache-dir=.turbo --filter='./packages/*'",
"build:release": "turbo run build:release --cache-dir=.turbo --filter='./packages/*'",
"build:examples": "turbo run build --cache-dir=.turbo --filter='./examples/*'",
"build:tools": "turbo run build --cache-dir=.turbo --filter='./tools/*'",
"test": "turbo run test --cache-dir=.turbo",
"pub": "turbo publish",
"e2e": "turbo run e2e",
"lint": "turbo run lint",
"update-packages": "yarn changeset",
"increase-packages": "yarn changeset version",
"publish-packages": "turbo run build:release test --cache-dir=.turbo && yarn increase-packages && yarn changeset publish",
"notification:prepare": "ts-node scripts/notification.ts"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"resolutions": {
"@babel/traverse": "7.23.2",
"crypto-js": "4.2.0",
"socks": "2.7.3"
},
"devDependencies": {
"@actions/core": "1.10.0",
"@changesets/cli": "2.27.1",
"@ledgerhq/types-cryptoassets": "7.11.0",
"@ledgerhq/types-devices": "6.24.0",
"@rollup/plugin-commonjs": "28.0.0",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-ordered-imports": "^0.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.2.0",
"rimraf": "5.0.0",
"rollup": "4.22.4",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "^29.0.3",
"ts-node": "10.9.2",
"tslib": "^2.5.0",
"turbo": "1.13.0",
"typescript": "^5.0.4",
"weighted": "^1.0.0",
"yarn-audit-ci": "^1.2.0"
}
}