-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 842 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 842 Bytes
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
{
"name": "bifrostql",
"version": "1.0.0",
"description": "Is a magical bridge connecting your front end code to your SQL datasources.",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bash dev-ui.sh",
"dev:ui": "bash dev-ui.sh",
"dev:lib": "cd examples/edit-db && npx vite build --watch",
"dev:backend": "dotnet watch run --no-hot-reload --project src/BifrostQL.UI/BifrostQL.UI.csproj -- --headless --port 5000",
"dev:frontend": "cd src/BifrostQL.UI/frontend && pnpm dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@standardbeagle/virtual-router": "^1.0.1",
"ajv": "^8.17.1"
},
"pnpm": {
"overrides": {
"ajv": "$ajv"
}
}
}