-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.14 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.14 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
{
"name": "time-gamble",
"version": "0.1.0",
"private": true,
"description": "Time Gamble: Stake ETH, Complete Tasks, Earn Rewards - A blockchain-enforced productivity game",
"scripts": {
"setup": "echo '🚧 Please initialize sub-projects first (app & ai_engine) 🚧'",
"----------- CONTRACTS -----------": "",
"chain:build": "cd contracts && forge build",
"chain:test": "cd contracts && forge test",
"chain:deploy": "cd contracts && forge script script/Deploy.s.sol",
"----------- AI ENGINE -----------": "",
"ai:dev": "source ai_engine/.venv/bin/activate && python ai_engine/streaming_chatbot.py",
"ai:start": "source ai_engine/.venv/bin/activate && python ai_engine/streaming_chatbot.py",
"----------- FRONTEND -----------": "",
"app:start": "cd app && npx expo start",
"app:android": "cd app && npx expo run:android",
"app:ios": "cd app && npx expo run:ios"
},
"workspaces": [
"ai_engine",
"app"
],
"keywords": [
"spoonos",
"foundry",
"react-native",
"adhd"
],
"author": ""
}