-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "gc",
"private": true,
"scripts": {
"build": "turbo build --filter='!solana-contracts'",
"build:all": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"dev:web": "yarn dev --filter=web",
"heroku-postbuild": "sh ./heroku-build.sh",
"build:api": "yarn build:all --filter=@apps/api",
"build:submitter": "yarn build:all --filter=@apps/merkle-submitter",
"run:api": "yarn build:api && yarn dev --filter=@apps/api",
"run:submitter": "yarn build:submitter && yarn dev --filter=@apps/merkle-submitter"
},
"packageManager": "[email protected]",
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"apps/contracts/*",
"apps/backend/*",
"apps/frontend/*",
"packages/*",
"packages/database/*"
],
"dependencies": {
"prettier-plugin-tailwindcss": "^0.5.14"
}
}