-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 2.46 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 2.46 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
{
"name": "root",
"workspaces": [
"packages/*"
],
"scripts": {
"surreal:docker": "cd packages/app-rst && docker compose up nestjs-surrealdb-rest-surrealdb",
"surreal:docker:daemon": "cd packages/app-rst && docker compose up -d nestjs-surrealdb-rest-surrealdb && docker compose logs -f nestjs-surrealdb-rest-surrealdb",
"surreal:initdb": "surreal import schemafull.surql --conn http://localhost:8000 --user root --pass root --ns test --db test",
"surreal": "surreal start --username root --password root --bind 0.0.0.0:8000 --log debug --allow-all rocksdb://database",
"surreal:cli": "surreal sql --endpoint http://localhost:8000 --namespace test --database test --auth-level root --username root --password root",
"surreal:export": "surreal export --conn http://localhost:8000 --user root --pass root --ns test --db test export.surql",
"// workspace": "::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
"install": "yarn install",
"// app-lib": "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
"app-lib:dev": "yarn --cwd packages/app-lib dev",
"app-lib:build": "yarn --cwd packages/app-lib build",
"app-lib:yalc:publish": "yarn --cwd packages/app-lib yalc:publish",
"app-lib:patch": "yarn --cwd packages/app-lib version:patch",
"app-lib:publish": "yarn --cwd packages/app-lib version:publish",
"// app-rst": "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
"start:app-rst": "yarn --cwd packages/app-rst start:debug",
"docker:app-rst:build": "yarn --cwd packages/app-rst docker:build",
"docker:app-rst:push": "yarn --cwd packages/app-rst docker:push",
"docker:app-rst:up": "yarn --cwd packages/app-rst docker:up",
"docker:app-rst:down": "yarn --cwd packages/app-rst docker:down",
"// app-gql": "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
"start:app-gql": "yarn --cwd packages/app-gql start:debug",
"docker:app-gql:build": "yarn --cwd packages/app-gql docker:build",
"docker:app-gql:push": "yarn --cwd packages/app-gql docker:push",
"docker:app-gql:up": "yarn --cwd packages/app-gql docker:up",
"docker:app-gql:down": "yarn --cwd packages/app-gql docker:down",
"// tutorial-graphql": "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
"start:tutorial-graphql": "yarn --cwd packages/tutorial-graphql start:debug",
"// end": ":::::::::::::::::::::::::::::::::::: ::::::::::::::::::::::::::"
},
"packageManager": "yarn@4.5.3"
}