-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 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
41
42
{
"name": "venusprotocol",
"version": "1.0.0",
"private": true,
"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 run build",
"extract-translations": "turbo run extract-translations",
"changeset": "changeset",
"postinstall": "husky && turbo run generate"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/config-conventional": "19.8.1",
"@playwright/test": "^1.58.2",
"commitlint": "^20.1.0",
"husky": "^9.0.6",
"playwright": "^1.58.2",
"rollup-plugin-visualizer": "^6.0.1",
"sass": "^1.68.0",
"turbo": "^2.8.7",
"typescript": "^5.1.6",
"validate-branch-name": "^1.3.0"
},
"resolutions": {
"react-error-overlay": "6.0.11",
"@emotion/styled": "^11.0.0"
}
}