-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "meshtrade-api-workspace",
"version": "1.0.0",
"private": true,
"description": "Meshtrade API workspace containing TypeScript SDK and documentation",
"packageManager": "yarn@1.22.22",
"workspaces": {
"packages": [
"ts-web",
"ts-node",
"ts-old",
"docs",
"tool/protoc-gen-mesh_ts_node",
"tool/protoc-gen-mesh_ts_web",
"tool/protoc-gen-meshtsold"
],
"nohoist": [
"**/raw-loader",
"**/raw-loader/**"
]
},
"scripts": {
"build": "yarn build:web && yarn build:node && yarn build:old",
"build:web": "yarn workspace @meshtrade/api-web build",
"build:node": "yarn workspace @meshtrade/api-node build",
"build:old": "yarn workspace @meshtrade/api-old build",
"build:docs": "yarn workspace mesh-api-docs build",
"test": "yarn test:web && yarn test:node && yarn test:old",
"test:web": "yarn workspace @meshtrade/api-web test",
"test:node": "yarn workspace @meshtrade/api-node test",
"test:old": "yarn workspace @meshtrade/api-old test",
"lint": "yarn lint:web && yarn lint:node && yarn lint:old",
"lint:web": "yarn workspace @meshtrade/api-web lint",
"lint:node": "yarn workspace @meshtrade/api-node lint",
"lint:old": "yarn workspace @meshtrade/api-old lint",
"clean": "yarn clean:web && yarn clean:node && yarn clean:old",
"clean:web": "yarn workspace @meshtrade/api-web clean",
"clean:node": "yarn workspace @meshtrade/api-node clean",
"clean:old": "yarn workspace @meshtrade/api-old clean",
"start:docs": "yarn workspace mesh-api-docs start",
"serve:docs": "yarn workspace mesh-api-docs serve",
"generate": "./dev/tool.sh all"
},
"keywords": [
"api",
"meshtrade",
"sdk",
"workspace"
],
"author": "Bernard Bussy <bernard@meshtrade.co>",
"repository": {
"type": "git",
"url": "https://github.com/meshtrade/api.git"
},
"devDependencies": {
"@playwright/test": "^1.54.1"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"braces": "^3.0.3",
"micromatch": "^4.0.8"
},
"resolutions": {
"baseline-browser-mapping": "^2.9.19"
}
}