forked from osmosis-labs/osmosis-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.08 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
{
"name": "osmosis-frontend",
"version": "0.0.1",
"description": "",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"dev": "turbo dev",
"dev:frontier": "dotenv -v NEXT_PUBLIC_IS_FRONTIER=true -- yarn dev",
"dev:testnet": "dotenv -v NEXT_PUBLIC_IS_TESTNET=true -- yarn dev",
"start": "turbo start",
"start:frontier": "dotenv -v NEXT_PUBLIC_IS_FRONTIER=true -- yarn start",
"start:testnet": "dotenv -v NEXT_PUBLIC_IS_TESTNET=true -- yarn start",
"build": "turbo build",
"build:frontier": "dotenv -v NEXT_PUBLIC_IS_FRONTIER=true -- yarn 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",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"pre-commit": "lerna run pre-commit",
"publish:libs": "lerna publish"
},
"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": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^40.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"dotenv-cli": "^7.2.1",
"jest": "^27.4.5",
"lerna": "^4.0.0",
"lint-staged": "^12.1.3",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"turbo": "^1.9.3",
"typescript": "4.5.4"
},
"dependencies": {}
}