-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.52 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.52 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
43
44
45
46
47
{
"name": "@objectstack/server",
"version": "4.0.3",
"license": "Apache-2.0",
"type": "module",
"private": true,
"scripts": {
"dev": "objectstack serve --dev",
"start": "objectstack serve",
"build": "objectstack compile",
"typecheck": "tsc --noEmit",
"test": "objectstack test",
"test:e2e": "tsx test/e2e.test.ts",
"clean": "rm -rf dist node_modules"
},
"dependencies": {
"@example/app-crm": "workspace:*",
"@example/app-todo": "workspace:*",
"@example/plugin-bi": "workspace:*",
"@hono/node-server": "^1.19.14",
"@libsql/client": "^0.14.0",
"@objectstack/driver-memory": "workspace:*",
"@objectstack/driver-turso": "workspace:*",
"@objectstack/hono": "workspace:*",
"@objectstack/metadata": "workspace:*",
"@objectstack/objectql": "workspace:*",
"@objectstack/plugin-audit": "workspace:*",
"@objectstack/plugin-auth": "workspace:*",
"@objectstack/plugin-hono-server": "workspace:*",
"@objectstack/plugin-security": "workspace:*",
"@objectstack/plugin-setup": "workspace:*",
"@objectstack/runtime": "workspace:*",
"@objectstack/service-ai": "workspace:*",
"@objectstack/service-analytics": "workspace:*",
"@objectstack/service-automation": "workspace:*",
"@objectstack/service-feed": "workspace:*",
"@objectstack/spec": "workspace:*",
"hono": "^4.12.12"
},
"devDependencies": {
"@objectstack/cli": "workspace:*",
"esbuild": "^0.24.2",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}