forked from VenusProtocol/venus-protocol-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "venusprotocol",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.x.x"
},
"packageManager": "yarn@1.22.21",
"workspaces": ["packages/*", "configs/*", "apps/*"],
"scripts": {
"start": "turbo run start",
"generate": "turbo run generate",
"lint": "turbo run lint",
"lint:styles": "turbo run lint:styles",
"format": "biome check --apply .",
"test": "turbo run test --",
"tsc": "turbo run tsc",
"clean": "turbo run clean && rm -rf node_modules",
"build": "turbo build",
"extract-translations": "turbo extract-translations",
"changeset": "changeset",
"changeset:version": "changeset version",
"postinstall": "husky && yarn run generate"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/config-conventional": "19.8.1",
"commitlint": "^20.1.0",
"husky": "^9.0.6",
"rollup-plugin-visualizer": "^6.0.1",
"sass": "^1.68.0",
"turbo": "^2.0.3",
"typescript": "^5.1.6",
"validate-branch-name": "^1.3.0"
},
"resolutions": {
"react-error-overlay": "6.0.11",
"@emotion/styled": "^11.0.0"
}
}