-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
36
37
38
39
40
41
42
{
"name": "openmux",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"start:web": "cd ./apps/web && npm run start",
"build:worker": "cd ./apps/worker && npm run start && cd ../../",
"start:worker": "cd ./apps/worker && node dist/index.js",
"test:api": "cd ./tests && bun test",
"db:generate": "cd ./packages/db && npx prisma generate && cd ../../",
"build:web":"turbo run build --filter=web"
},
"devDependencies": {
"prettier": "^3.5.3",
"secretlint": "^9.3.0",
"turbo": "^2.4.4",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.2",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@aws-sdk/client-ecs": "^3.778.0",
"@aws-sdk/client-sqs": "^3.777.0",
"@solana/pay": "^0.2.5",
"@solana/wallet-adapter-react": "^0.15.36",
"@solana/wallet-adapter-react-ui": "^0.9.36",
"@solana/web3.js": "^1.98.0",
"dotenv": "^16.4.7",
"husky": "^9.1.7",
"next-themes": "^0.4.6"
}
}