forked from osmosis-labs/osmosis-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.7 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
{
"name": "osmosis-frontend",
"version": "0.0.1",
"description": "",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"dev": "turbo dev",
"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": "lerna 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 --project ./project.inlang && yarn fix-machine-translate",
"fix-machine-translate": "node fix-machine-translate.js"
},
"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": {
"@inlang/cli": "^2.11.0",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.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",
"jest": "^27.4.5",
"lerna": "^4.0.0",
"lint-staged": "^12.1.3",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"ts-jest": "^27.1.2",
"turbo": "^1.10.16",
"typescript": "4.7.4",
"jest-watch-typeahead": "^2.2.2",
"msw": "^1.3.2",
"whatwg-fetch": "^3.6.19"
},
"dependencies": {},
"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"
}
}