-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.25 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.25 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
{
"name": "giggle",
"version": "1.0.0",
"private": true,
"description": "WhatsApp-based stablecoin payment system",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=api",
"dev:agent": "npm run dev --workspace=agents",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:agent\"",
"build": "npm run build --workspaces --if-present",
"start": "npm run start --workspace=api",
"migrate": "cd apps/api && npm run tsx scripts/migrate.ts",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint --workspaces --if-present -- --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "npm run test --workspaces --if-present",
"test:watch": "npm run test --workspaces --if-present -- --watch",
"typecheck": "npm run typecheck --workspaces --if-present",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/dist packages/*/dist",
"setup": "npm install && npm run migrate"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.2.5"
}
}