-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 KB
/
package.json
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
{
"name": "ts-hasura-starter",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"pnpm": {
"overrides": {
"@sinclair/typebox": "~0.31.8"
}
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo run clean",
"tc": "turbo run tc",
"lint": "turbo run lint",
"test": "turbo run test",
"clean:danger": "git clean -xdf",
"gen": "turbo run gen",
"start:services": "docker-compose up",
"start:apps": "turbo run start",
"hasura": "hasura --skip-update-check --project ./graphql-engine",
"hasura:metadata:apply": "pnpm run hasura metadata apply",
"hasura:console": "pnpm run hasura console",
"metadata:apply": "pnpm run hasura metadata apply"
},
"keywords": [],
"author": "ilijaNL",
"license": "MIT",
"devDependencies": {
"hasura-cli": "~2.21.0",
"prettier": "^2.8.8",
"turbo": "^1.10.13"
}
}