-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "outp0st",
"description": "Monorepo for outp0st project",
"homepage": "https://outp0st.io",
"author": "dimkk <dima.v@genolis.com.au>",
"repository": "https://github.com/genolis/outp0st",
"license": "Apache-2.0",
"keywords": [
"terra",
"blockchain",
"ui",
"contracts"
],
"version": "0.0.2",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"build:web": "turbo run build --scope=@outp0st/web",
"build:payload": "turbo run build --scope=@outp0st/payload --include-dependencies --no-deps",
"dev": "turbo run dev --parallel",
"dev:o": "turbo run dev --scope=@outp0st/payload",
"dev:web": "turbo run dev --scope=@outp0st/web",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "turbo run release"
},
"devDependencies": {
"turbo": "latest",
"standard-version": "^9.3.2"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=14.0.0",
"ubuntu": "21.10"
},
"packageManager": "npm@8.6.0"
}