-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 2.08 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
{
"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",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-packages": "turbo run lint test --filter=./packages/**/*",
"release": "changeset publish",
"new-wallet": "turbo gen wallet"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@lidofinance/eslint-config": "^0.38.0",
"@next/eslint-plugin-next": "^13.5.3",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "5.0.2",
"@rollup/plugin-node-resolve": "15.0.1",
"@turbo/gen": "2.1.3",
"@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",
"rollup": "3.29.5",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-svg-import": "1.6.0",
"rollup-plugin-typescript2": "0.34.1",
"tslib": "2.5.0",
"turbo": "2.1.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"dependencies": {},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]"
}