-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.35 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.35 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
{
"name": "onchain-access-control",
"private": true,
"license": "MIT",
"version": "0.0.1",
"author": {
"name": "Fabian Piper",
"url": "https://github.com/fapiper"
},
"scripts": {
"clean": "bazel clean",
"update-repos": "bazel run //:gazelle-update-repos",
"build": "run-p build:turbo build:bazel",
"build:turbo": "turbo run build",
"build:bazel": "bazel build //core/...",
"test": "run-p test:turbo test:bazel",
"test:turbo": "turbo run test",
"test:bazel": "bazel test //core/...",
"dev": "run-p dev:turbo dev:bazel",
"dev:turbo": "turbo run dev --parallel",
"dev:bazel": "run-p dev:consumer",
"dev:consumer": "ibazel run //cmd/consumer",
"dev:ui": "turbo run dev --filter=ui",
"dev:contracts": "turbo run dev --filter=contracts",
"lint:turbo": "turbo run lint",
"prepare": "husky install"
},
"devDependencies": {
"@bazel/bazelisk": "^1.19.0",
"@bazel/buildifier": "^5.1.0",
"@bazel/ibazel": "^0.16.2",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/cz-commitlint": "^17.8.1",
"@tsconfig/node16-strictest": "1.0.4",
"commitizen": "^4.3.0",
"commitlint": "^17.8.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"npm-run-all": "^4.1.5",
"turbo": "^1.12.4"
},
"engines": {
"pnpm": ">=8.10.0",
"node": ">=v16.14.0"
}
}