-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (48 loc) · 1.5 KB
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
{
"name": "dero-docs-monorepo",
"version": "1.0.0",
"description": "Monorepo for DERO, TELA, and DeroPay documentation sites",
"private": true,
"workspaces": [
"derod-main",
"tela-main",
"deropay-main"
],
"scripts": {
"dev:derod": "cd derod-main && npm run dev",
"dev:tela": "cd tela-main && npm run dev",
"dev:deropay": "cd deropay-main && npm run dev",
"build:derod": "cd derod-main && npm run build",
"build:tela": "cd tela-main && npm run build",
"build:deropay": "cd deropay-main && npm run build",
"build:all": "npm run build:derod && npm run build:tela && npm run build:deropay",
"install:all": "cd derod-main && npm install && cd ../tela-main && npm install && cd ../deropay-main && npm install",
"clean": "rm -rf derod-main/.next derod-main/out tela-main/.next tela-main/out deropay-main/.next deropay-main/out",
"clean:all": "npm run clean && rm -rf derod-main/node_modules tela-main/node_modules deropay-main/node_modules node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DHEBP/dero-docs.git"
},
"keywords": [
"dero",
"tela",
"documentation",
"blockchain",
"web3",
"privacy"
],
"author": "DERO & TELA Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/DHEBP/dero-docs/issues"
},
"homepage": "https://github.com/DHEBP/dero-docs#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"overrides": {
"next-mdx-remote": "^6.0.0"
}
}