-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.2 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.2 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
{
"private": true,
"name": "human-protocol",
"version": "1.0.0",
"description": "Human Protocol Monorepo",
"repository": "https://github.com/humanprotocol/human-protocol",
"license": "MIT",
"scripts": {
"clean": "yarn workspaces foreach --all -p run clean",
"lint": "yarn workspaces foreach --all -p run lint",
"build:libs": "yarn workspaces foreach --all --no-private -pt run build",
"docker:infra-up": "make -C ./docker-setup -f Makefile.dev infra-up",
"docker:infra-stop": "make -C ./docker-setup -f Makefile.dev infra-stop",
"docker:infra-down": "make -C ./docker-setup -f Makefile.dev infra-down",
"docker:web3-up": "make -C ./docker-setup -f Makefile.dev web3-up",
"docker:web3-down": "make -C ./docker-setup -f Makefile.dev web3-down"
},
"workspaces": [
"packages/**"
],
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.29.6",
"husky": "^9.1.6",
"lint-staged": "^16.2.7"
},
"resolutions": {
"gluegun/ejs": "^3.1.10",
"gluegun/semver": "^7.5.2",
"@graphql-tools/executor-graphql-ws/ws": "^8.17.1",
"@graphql-tools/executor-legacy-ws/ws": "^8.17.1"
},
"packageManager": "yarn@4.10.3"
}