forked from xchainjs/xchainjs-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
53
54
55
56
57
58
59
{
"name": "root",
"private": true,
"description": "XChainJS Chain Clients MonoRepo",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"build:examples": "tsc examples/**/*.ts --noEmit --skipLibCheck",
"pub": "lerna publish",
"test": "lerna run test",
"e2e": "lerna run e2e",
"lint": "lerna run lint",
"update-packages": "yarn changeset",
"increase-packages": "yarn changeset version",
"notification:prepare": "ts-node scripts/notification.ts"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"resolutions": {
"@babel/traverse": "7.23.2",
"crypto-js": "4.2.0"
},
"devDependencies": {
"@actions/core": "1.10.0",
"@changesets/cli": "2.27.1",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/jest": "^29.2.5",
"@types/rollup-plugin-peer-deps-external": "2.2.1",
"@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",
"lerna": "^6.6.1",
"lint-staged": "^13.1.0",
"prettier": "^2.2.0",
"rimraf": "5.0.0",
"rollup": "2.78.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "10.9.2",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"yarn-audit-ci": "^1.2.0"
}
}