forked from akash-network/console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.18 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.18 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@akashnetwork/console",
"workspaces": [
"./packages/*",
"./apps/*"
],
"scripts": {
"api:dev": "turbo dev --filter=\"./apps/api\"",
"console:dev": "turbo dev --filter=\"./apps/deploy-web/\" --filter=\"./apps/api\" --filter=\"./apps/provider-proxy/\"",
"console:dev:full-no-db": "cross-env SKIP_DC_DB=true turbo dev-nodc --filter=\"./apps/deploy-web/\" --filter=\"./apps/api\" --filter=\"./apps/indexer\" --filter=\"./apps/provider-proxy/\"",
"console:dev:no-db": "cross-env SKIP_DC_DB=true turbo dev-nodc --filter=\"./apps/deploy-web/\" --filter=\"./apps/api\" --filter=\"./apps/provider-proxy/\"",
"dc": "dc",
"dc:build": "dc build",
"dc:down": "dc down",
"dc:up:db": "dc up db",
"dc:up:dev": "dc up",
"format": "prettier --write ./*.{js,json} **/*.{ts,tsx,js,json}",
"indexer:dev": "turbo dev --filter=\"./apps/indexer\"",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky || true",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"safe-install": "script/safe-deps-install.sh",
"stats:dev": "turbo dev --filter=\"./apps/stats-web/\" --filter=\"./apps/api\"",
"stats:dev:no-db": "cross-env SKIP_DC_DB=true turbo dev --filter=\"./apps/stats-web/\" --filter=\"./apps/api\"",
"update-apps-local-deps": "turbo update-apps-local-deps --filter=\"./packages/*\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet",
"prettier --write"
],
"package.json": [
"npx sort-package-json"
],
"./packages/ui/**/*.ts": [
"npm run validate:types -w packages/ui"
],
"./packages/net/**/*.ts": [
"npm run validate:types -w packages/net"
],
"./packages/jwt/**/*.ts": [
"npm run validate:types -w packages/jwt"
],
"./packages/network-store/**/*.ts": [
"npm run validate:types -w packages/network-store"
],
"./packages/http-sdk/**/*.ts": [
"npm run validate:types -w packages/http-sdk"
],
"./packages/logging/**/*.ts": [
"npm run validate:types -w packages/logging"
],
"./packages/database/**/*.ts": [
"npm run validate:types -w packages/database"
],
"./apps/indexer/**/*.ts": [
"npm run validate:types -w apps/indexer"
]
},
"dependencies": {
"@interchain-ui/react": "^1.23.31",
"drizzle-orm": "^0.31.2",
"nock": "^14.0.4",
"pg": "^8.11.6"
},
"devDependencies": {
"@akashnetwork/dev-config": "*",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@release-it/conventional-changelog": "github:akash-network/conventional-changelog#feature/pre-release",
"cross-env": "^7.0.3",
"eslint-plugin-import-x": "4.10.0",
"husky": "^9.1.6",
"lint-staged": "^16.2.7",
"release-it": "^17.6.0",
"sort-package-json": "^2.14.0",
"turbo": "^2.3.3"
},
"packageManager": "npm@11.6.2",
"engines": {
"node": "^24.13.0",
"npm": "^11.6.2"
},
"volta": {
"node": "24.13.0",
"npm": "11.6.2"
},
"trustedDependencies": [
"esbuild@0.24.2",
"@swc/core@1.11.10",
"@swc/core@1.15.10",
"@sentry/cli@2.39.1",
"unrs-resolver@1.3.3",
"sharp@0.34.5"
]
}