-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"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": "17.7.0",
"commitlint": "^19.3.0",
"husky": "^9.0.6",
"reg-keygen-git-hash-plugin": "^0.14.2",
"reg-notify-github-plugin": "^0.14.2",
"reg-publish-s3-plugin": "^0.12.2",
"reg-suit": "^0.14.0",
"rollup-plugin-visualizer": "^5.9.2",
"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",
"chrome-remote-interface": "^0.32.1"
}
}