forked from humanprotocol/human-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.14 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
45
46
47
48
49
50
51
52
53
{
"private": true,
"name": "human-protocol",
"version": "1.0.0",
"description": "Human Protocol Monorepo",
"repository": "https://github.com/humanprotocol/human-protocol",
"license": "MIT",
"scripts": {
"core:test": "yarn workspace @human-protocol/core test",
"core:lint": "yarn workspace @human-protocol/core lint",
"subgraph:test": "yarn workspace @human-protocol/subgraph test",
"subgraph:lint": "yarn workspace @human-protocol/subgraph lint",
"escrow-dashboard:start": "yarn workspace @human-protocol/escrow-dashboard start",
"escrow-dashboard:test": "yarn workspace @human-protocol/escrow-dashboard test",
"escrow-dashboard:lint": "yarn workspace @human-protocol/escrow-dashboard lint",
"eth-kvstore:lint": "yarn workspace @human-protocol/eth-kvstore-gui lint",
"fortune:test": "yarn workspace @human-protocol/fortune test",
"fortune:lint": "yarn workspace @human-protocol/fortune lint",
"sdk:test": "yarn workspace @human-protocol/sdk test",
"sdk:lint": "yarn workspace @human-protocol/sdk lint",
"test": "concurrently npm:core:test npm:subgraph:test npm:escrow-dashboard:test npm:fortune:test, npm:sdk:test",
"lint": "concurrently npm:core:lint npm:subgraph:lint npm:escrow-dashboard:lint npm:fortune:lint npm:eth-kvstore:lint npm:sdk:lint",
"prepare": "husky install"
},
"workspaces": [
"packages/**"
],
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@typescript-eslint/utils": "^5.42.1",
"concurrently": "^7.5.0",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}