-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1009 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
{
"name": "rel",
"private": true,
"scripts": {
"clean": "pnpm m run clean",
"build": "pnpm m run build",
"build:watch": "concurrently \"pnpm build:watch --dir packages/cyypher\" \"pnpm build:watch --dir packages/rel-cli\" \"pnpm build:watch --dir packages/rel-server\"",
"dev": "pnpm m run dev",
"release": "pnpx changeset version && pnpm publish -r --no-git-checks",
"redis": "docker run -p 6379:6379 -it --rm redislabs/redisgraph"
},
"oldscripts": {
"bootstrap": "lerna bootstrap",
"link": "lerna link",
"build": "lerna run build",
"build:watch": "lerna run build:watch",
"test": "lerna run test -- --color",
"test:ci": "lerna run test:ci -- --color",
"test:coverage": "lerna run test:coverage",
"release": "lerna run clean && lerna run build && lerna publish",
"redis": "docker run -p 6379:6379 redislabs/redismod"
},
"dependencies": {
"concurrently": "^7.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.21.0"
}
}