This repository has been archived by the owner on Jul 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.47 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
54
55
56
57
58
59
{
"name": "@quest-chains/mono-repo",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"lint": "concurrently \"yarn utils:lint\" \"yarn dapp:lint\" \"yarn contracts:lint\"",
"typecheck": "concurrently \"yarn utils:typecheck\" \"yarn dapp:typecheck\" \"yarn contracts:typecheck\"",
"format": "prettier --ignore-path .gitignore --write \"{*,**/*}.{json,yml,yaml,md,css,scss,sol}\"",
"contracts:compile": "yarn workspace @quest-chains/contracts compile",
"contracts:build": "yarn workspace @quest-chains/contracts build",
"contracts:lint": "yarn workspace @quest-chains/contracts lint",
"contracts:typecheck": "yarn workspace @quest-chains/contracts typecheck",
"contracts:test": "yarn workspace @quest-chains/contracts test",
"contracts:deploy": "yarn workspace @quest-chains/contracts deploy",
"subgraph:codegen": "yarn workspace @quest-chains/subgraph codegen",
"subgraph:build": "yarn workspace @quest-chains/subgraph build",
"dapp:dev": "yarn workspace @quest-chains/dapp dev",
"dapp:lint": "yarn workspace @quest-chains/dapp lint",
"dapp:typecheck": "yarn workspace @quest-chains/dapp typecheck",
"dapp:build": "yarn workspace @quest-chains/dapp build",
"dapp:start": "yarn workspace @quest-chains/dapp start",
"dapp:generate": "yarn workspace @quest-chains/dapp generate",
"utils:lint": "yarn workspace @quest-chains/utils lint",
"utils:build": "yarn workspace @quest-chains/utils build",
"utils:typecheck": "yarn workspace @quest-chains/utils typecheck",
"root:prepare": "concurrently \"yarn utils:build\" \"yarn contracts:build\" \"yarn dapp:generate\" && patch-package && husky install",
"prepare": "yarn root:prepare"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.2.1",
"@types/graceful-fs": "^4.1.5",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"concurrently": "^7.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"typescript": "^4.7.4"
}
}