forked from gitcoinco/grants-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.65 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
42
43
44
{
"name": "root",
"private": true,
"license": "AGPL-3.0-only",
"engines": {
"npm": ">=8.5.5",
"node": ">=16.15.0"
},
"scripts": {
"start": "pnpm --filter round-manager run start",
"build": "pnpm turbo build",
"compile": "pnpm --filter contracts run compile ",
"test": "pnpm run test",
"typecheck": "turbo run typecheck",
"// round manager script": "====== packages/round-manager specific ======",
"rm-build": "pnpm --filter round-manager run build",
"rm-test": "pnpm --filter round-manager run test",
"rm-start": "pnpm --filter round-manager run start",
"rm-slither": "pnpm --filter round-manager run slither",
"rm-typecheck": "pnpm --filter round-manager exec -- tsc --noEmit",
"// grant explorer script": "====== packages/grant-explorer specific ======",
"re-build": "turbo run build --filter=grant-explorer",
"re-test": "turbo run test --filter=grant-explorer",
"re-start": "pnpm --filter grant-explorer run start",
"re-typecheck": "turbo run typecheck --filter=grant-explorer",
"// builder script": "====== packages/builder specific ======",
"b-start": "pnpm --filter builder run start",
"// api script": "====== packages/api specific ======",
"api-build": "turbo run build --filter=api",
"api-test": "turbo run test --filter=api",
"api-start": "pnpm --filter api run start",
"lint-staged": "lint-staged",
"lint:builder": "pnpm --filter=builder run lint"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.1.0"
},
"dependencies": {
"turbo": "^1.9.3"
}
}