-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.66 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "reef-knot_root",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"packages/wallets/*",
"packages/connectors/*"
],
"scripts": {
"build": "turbo run build",
"build-packages": "turbo run build --filter='./packages/**/*'",
"build-apps": "turbo run build --filter='./apps/*'",
"dev": "turbo run dev --concurrency=100",
"dev-demo-react": "turbo run dev --filter='./apps/demo-react'",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck --continue",
"check-packages": "turbo run typecheck lint test --filter='./packages/**/*'",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"new-wallet": "turbo gen wallet"
},
"devDependencies": {
"@lidofinance/eslint-config": "^0.38.0",
"@lidofinance/multi-semantic-release": "^1.0.2",
"@next/eslint-plugin-next": "^13.5.3",
"@turbo/gen": "2.7.5",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.17",
"@types/styled-components": "5.1.12",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-config-turbo": "2.1.3",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-sonarjs": "0.21.0",
"eslint-plugin-unicorn": "48.0.1",
"prettier": "^3.0.3",
"tsdown": "0.20.3",
"tslib": "2.8.1",
"turbo": "latest",
"typescript": "~5.7",
"typescript-eslint": "^7.9.0"
},
"release": {
"branches": [
"main",
{
"name": "develop",
"channel": "alpha",
"prerelease": "alpha"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false
}
]
]
},
"multi-release": {
"sequentialInit": true
},
"resolutions": {
"minimatch@^3": "^3.1.5",
"minimatch@^9": "^9.0.7",
"basic-ftp": "^5.3.1",
"tar@^7": "^7.5.11",
"lodash@^4": "^4.18.0",
"picomatch@^2": "^2.3.2",
"axios@^1": "^1.14.0",
"defu@^6": "^6.1.5",
"bn.js@^4": "^4.12.3",
"bn.js@^5": "^5.2.3",
"ajv@^8": "^8.18.0",
"js-yaml": "^4.2.0"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "yarn@3.8.7"
}