-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.15 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.15 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
{
"name": "frameworkx",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:edge": "npm run -w @frameworkx/edge dev",
"dev:api": "npm run -w @frameworkx/api dev",
"dev:worker": "npm run -w @frameworkx/worker dev",
"dev:indexer": "npm run -w @frameworkx/indexer dev",
"dev:social": "npm run -w @frameworkx/social dev",
"dev:ui": "npm run -w @frameworkx/ui dev",
"build": "npm run -w @frameworkx/shared build && npm run -w @frameworkx/edge build && npm run -w @frameworkx/api build && npm run -w @frameworkx/worker build && npm run -w @frameworkx/indexer build && npm run -w @frameworkx/social build && npm run -w @frameworkx/ui build",
"start:edge": "npm run -w @frameworkx/edge start",
"start:api": "npm run -w @frameworkx/api start",
"start:worker": "npm run -w @frameworkx/worker start",
"start:indexer": "npm run -w @frameworkx/indexer start",
"start:social": "npm run -w @frameworkx/social start",
"start:ui": "npm run -w @frameworkx/ui preview"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.521.0",
"@aws-sdk/lib-storage": "^3.521.0",
"pg": "^8.12.0"
}
}