forked from OlympusDAO/treasury-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 954 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 954 Bytes
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
{
"name": "treasury-subgraph",
"version": "1.0.0",
"description": "Monorepo for the OlympusDAO treasury subgraph",
"main": "index.js",
"repository": "git@github.com:0xJem/federated-subgraph.git",
"author": "Jem <0x0xjem@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo build",
"lint": "turbo lint",
"server:start": "cd apps/server && dotenv -e ../../.env -- yarn start",
"changelog": "cd apps/client && yarn changelog",
"publish-package": "dotenv -e .env.prod -v YARN_OTP=$YARN_OTP -- turbo publish-package",
"depcheck": "syncpack",
"depcheck:fix": "syncpack fix-mismatches",
"test": "turbo test",
"test:ci": "turbo test:ci",
"test:local": "WG_PUBLIC_NODE_URL=http://localhost:9991/ dotenv -- turbo test"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"dotenv-cli": "^7.2.1",
"syncpack": "^9.8.6",
"turbo": "^1.9.3"
}
}