forked from osmosis-labs/osmosis-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "osmosis-frontend",
"version": "0.0.1",
"description": "",
"private": true,
"engines": {
"node": "20.x"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"dev": "turbo dev --concurrency 14",
"dev:testnet": "dotenv -v NEXT_PUBLIC_IS_TESTNET=true -- yarn dev",
"start": "turbo start",
"start:testnet": "dotenv -v NEXT_PUBLIC_IS_TESTNET=true -- yarn start",
"build": "turbo build",
"build:testnet": "dotenv -v NEXT_PUBLIC_IS_TESTNET=true -- yarn build",
"build:libs": "turbo build --parallel --filter @osmosis-labs/math --filter @osmosis-labs/pools --filter @osmosis-labs/stores",
"build:clean": "yarn clean && yarn install --frozen-lockfile && yarn build",
"clean": "turbo clean --parallel; rm -rf node_modules",
"analyze": "turbo analyze",
"test": "turbo test",
"test:e2e": "turbo run test:e2e",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"pre-commit": "lerna run pre-commit --concurrency false",
"publish:libs": "lerna publish",
"machine-translate": "inlang machine translate -f --project ./project.inlang && yarn lint:fix",
"lint:workspace": "npx sherif@latest --ignore-package ./packages/keplr-hooks --ignore-package ./packages/keplr-stores",
"postinstall": "yarn lint:workspace"
},
"pre-commit": [
"pre-commit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/osmosis-labs/osmosis-frontend.git"
},
"author": "osmosis-labs",
"bugs": {
"url": "https://github.com/osmosis-labs/osmosis-frontend/issues"
},
"homepage": "https://github.com/osmosis-labs/osmosis-frontend#readme",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@inlang/cli": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"babel-jest": "^29.7.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"is-ci-cli": "^2.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lerna": "8.1.2",
"lint-staged": "^12.1.3",
"msw": "^1.3.3",
"nan": "^2.19.0",
"node-gyp": "^10.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"turbo": "^2.0.14",
"typescript": "5.4.5"
},
"packageManager": "[email protected]",
"resolutions": {
"@keplr-wallet/background": "0.10.24-ibc.go.v7.hot.fix",
"@keplr-wallet/common": "0.10.24-ibc.go.v7.hot.fix",
"@keplr-wallet/cosmos": "0.10.24-ibc.go.v7.hot.fix",
"@keplr-wallet/proto-types": "0.10.24-ibc.go.v7.hot.fix",
"@keplr-wallet/router": "0.10.24-ibc.go.v7.hot.fix",
"@keplr-wallet/types": "0.10.24-ibc.go.v7.hot.fix",
"@keplr-wallet/unit": "0.10.24-ibc.go.v7.hot.fix"
}
}