-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "xmtp-web",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"examples/*",
"packages/*",
"shared/*"
],
"scripts": {
"build": "turbo run build --filter='./packages/*'",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .turbo && yarn cache clean",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "FORCE_COLOR=1 turbo run lint",
"publish": "yarn build && changeset publish",
"quickstart": "turbo run quickstart",
"test": "FORCE_COLOR=1 turbo run test",
"test:setup": "./dev/up",
"test:teardown": "./dev/down",
"typecheck": "FORCE_COLOR=1 turbo run typecheck"
},
"resolutions": {
"viem": "^2.17.3"
},
"dependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.7"
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.0",
"turbo": "^2.0.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}