-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.46 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.46 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
{
"name": "do-not-stop",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"install:all": "pnpm install && pnpm --prefix frontend install && pnpm --prefix backend install && pnpm --prefix mobile install && pnpm --prefix contracts/ethereum install",
"dev:fe": "pnpm --prefix frontend dev",
"dev:be": "pnpm --prefix backend dev",
"dev:mobile": "pnpm --prefix mobile start",
"eth:node": "pnpm --prefix contracts/ethereum node",
"eth:deploy": "pnpm --prefix contracts/ethereum deploy:inject",
"sol:start": "docker-compose -f contracts/solana/docker-compose.yml up -d",
"sol:inject-ngrok": "pnpm --prefix contracts/solana/cryptozombies inject-ngrok",
"dev:local": "concurrently --kill-others-on-fail --names \"HH,ETH,BE,FE,SOL\" \"pnpm eth:node\" \"pnpm eth:deploy\" \"pnpm dev:be\" \"pnpm dev:fe\" \"pnpm sol:start && pnpm sol:inject-ngrok\"",
"dev:be:fe": "concurrently --kill-others-on-fail --names \"BE,FE\" \"pnpm dev:be\" \"pnpm dev:fe\"",
"dev:be:mobile": "concurrently --kill-others-on-fail --names \"BE,MB\" \"pnpm dev:be\" \"pnpm dev:mobile\"",
"compile": "pnpm --prefix contracts/ethereum compile",
"test": "pnpm --prefix contracts/ethereum test",
"build": "pnpm compile && pnpm --prefix backend build && pnpm --prefix frontend build"
},
"devDependencies": {
"concurrently": "^8.2.2",
"tsx": "^4.7.0",
"dotenv": "^16.4.5"
},
"pnpm": {
"overrides": {
"valtio": "2.1.8"
}
}
}