forked from osmosis-labs/osmosis-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.05 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
{
"name": "osmosis-frontend",
"version": "0.0.1",
"description": "",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "lerna run dev --parallel",
"dev:frontier": "cross-env NEXT_PUBLIC_IS_FRONTIER=true lerna run dev --parallel",
"dev:testnet": "cross-env NEXT_PUBLIC_IS_TESTNET=true lerna run dev --parallel",
"start": "lerna run start --stream",
"start:frontier": "cross-env NEXT_PUBLIC_IS_FRONTIER=true lerna run start --stream",
"start:testnet": "cross-env NEXT_PUBLIC_IS_TESTNET=true lerna run start --stream",
"clean": "lerna run clean; rm -rf node_modules",
"build": "lerna run build",
"build:frontier": "cross-env NEXT_PUBLIC_IS_FRONTIER=true lerna run build",
"build:testnet": "cross-env NEXT_PUBLIC_IS_TESTNET=true lerna run build",
"build:libs": "lerna run build --ignore @osmosis-labs/web",
"analyze": "lerna run analyze",
"test": "lerna run test --parallel",
"build:clean": "yarn clean && yarn install --frozen-lockfile && lerna run build",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"pre-commit": "lerna run pre-commit"
},
"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",
"cross-env": "^7.0.3",
"eslint": "8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-unicorn": "^40.0.0",
"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",
"typescript": "4.5.4",
"eslint-plugin-simple-import-sort": "^10.0.0"
},
"dependencies": {}
}