-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "grapevine",
"version": "0.1.10",
"private": true,
"description": "Decentralized Data Feeds Platform - Monorepo",
"packageManager": "pnpm@10.22.0",
"workspaces": [
"grapevine-api",
"grapevine-client",
"grapevine-mcp"
],
"scripts": {
"dev": "npm run dev --workspace=grapevine-api",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"install:all": "npm install",
"clean": "rm -rf node_modules && rm -rf grapevine-api/node_modules",
"sync-types": "node sync-types.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/PinataCloud/grapevine.git"
},
"keywords": [
"blockchain",
"data-feeds",
"web3",
"api",
"decentralized",
"ipfs",
"prediction-markets"
],
"author": "engineering@pinata.cloud",
"license": "MIT",
"devDependencies": {
"prettier": "^3.4.2"
}
}