forked from curvefi/curve-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.59 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
{
"name": "curve-frontend",
"version": "2.1.0",
"private": true,
"engines": {
"node": "24"
},
"workspaces": [
"apps/*",
"packages/*",
"tests"
],
"scripts": {
"build": "yarn workspaces foreach --parallel --all run build",
"test": "yarn workspaces foreach --parallel --all run test",
"start": "yarn workspace main start",
"dev": "yarn workspace main dev",
"dev-router-api": "yarn workspace router-api dev",
"lint": "eslint --cache --cache-location .cache/eslint --cache-strategy content \"{apps,packages,tests}/**/*.{ts,tsx}\"",
"lint:fix": "eslint --cache --cache-location .cache/eslint --cache-strategy content \"{apps,packages,tests}/**/*.{ts,tsx}\" --fix",
"typecheck": "node -e \"require('fs').mkdirSync('.cache/typecheck', {recursive: true})\" && yarn workspaces foreach --parallel --all run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"storybook": "yarn workspace curve-ui-kit run storybook",
"storybook:build": "yarn workspace curve-ui-kit run build:storybook",
"check-supply-chain": "node .github/check-supply-chain.mjs"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@eslint/eslintrc": "*",
"@eslint/js": "*",
"@types/react": "*",
"@types/react-dom": "*",
"bignumber.js": "*",
"echarts": "*",
"echarts-for-react": "*",
"eslint": "*",
"eslint-config-custom": "*",
"ethers": "*",
"husky": "^9.1.7",
"immer": "*",
"lint-staged": "16.4.0",
"lodash": "*",
"prettier": "^3.8.2",
"react": "*",
"react-dom": "*",
"styled-components": "*",
"typescript": "*",
"vite": "*",
"vite-plugin-svgr": "*",
"vitest": "*",
"zustand": "*"
},
"packageManager": "yarn@4.14.1",
"lint-staged": {
"{apps,tests,packages}/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"resolutions": {
"@curvefi/api": "2.68.43",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"bignumber.js": "9.3.1",
"echarts": "6.0.0",
"echarts-for-react": "3.0.6",
"eslint": "9.39.2",
"ethers": "6.16.0",
"immer": "11.1.4",
"lodash": "4.18.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"styled-components": "6.4.0",
"typescript": "6.0.2",
"vite": "7.3.1",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.15",
"zustand": "5.0.12"
}
}