-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "hyperdrive-frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "AGPL-3.0",
"workspaces": [
"apps/*",
"packages/*",
"crates/*"
],
"scripts": {
"build": "turbo run build",
"build:crates": "turbo run build --filter=./crates/*",
"build:packages": "turbo run build --filter=./packages/*",
"build:docs": "yarn build:packages && turbo run build --filter={./apps/hyperdrive-sdk-docs}",
"dev": "turbo run dev --parallel --filter=./apps/*",
"lint": "turbo run lint",
"lint:packages": "turbo run lint --filter=./packages/*",
"test": "turbo run test --filter=./packages/*",
"test:run": "turbo run test:run --filter=./packages/*",
"format": "turbo run format",
"format:check": "turbo run format:check",
"postinstall": "npx husky",
"typecheck": "turbo run typecheck",
"reset-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && yarn cache clean && yarn",
"release": "yarn build:packages && changeset publish"
},
"devDependencies": {
"@hyperdrive/prettier-config": "*",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^13.0.3",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"turbo": "^2.0.6",
"typescript": "^5.5.4"
},
"resolutions": {
"typescript": "^5.5.4",
"viem": "2.9.2"
},
"lint-staged": {
"{apps,packages}/**/*.{gql,graphql,js,jsx,ts,tsx,json}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
},
"packageManager": "[email protected]",
"msw": {
"workerDirectory": [
"apps/hyperdrive-trading/src/public"
]
}
}