forked from superfluid-finance/protocol-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 4.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@superfluid-finance/protocol-monorepo",
"description": "Superfluid Protocol monorepo",
"repository": {
"type": "git",
"url": "github:superfluid-finance/protocol-monorepo"
},
"private": true,
"npmClient": "yarn",
"license": "MIT",
"scripts": {
"prepare": "yarn git:submodule:init",
"git:submodule:init": "git submodule update --init --recursive",
"git:submodule:update": "git submodule update --recursive",
"git:submodule:sync": "git submodule update --remote --recursive;git submodule sync --recursive",
"git:submodule:deinit": "git submodule deinit --all --force",
"lint": "run-s lint:*",
"lint:shellcheck": "tasks/shellcheck-all-tasks.sh",
"lint:workspaces": "yarn workspaces run lint",
"lint:actionlint": "actionlint .github/workflows/*.yml",
"build": "yarn build-essentials #synonym of build-essentials",
"build-essentials": "set -ex;for i in metadata ethereum-contracts js-sdk sdk-core sdk-redux;do yarn workspace @superfluid-finance/$i build;done",
"build-for-contracts-dev": "set -ex;for i in metadata ethereum-contracts js-sdk;do yarn workspace @superfluid-finance/$i build;done",
"clean": "rm -rf node_modules; rm -rf packages/*/node_modules; yarn workspace @superfluid-finance/ethereum-contracts clean",
"test": "set -ex;for i in ethereum-contracts;do yarn workspace @superfluid-finance/$i test;done",
"manage-versions": "lerna version --exact --no-git-tag-version --preid rc",
"check-updates": "run-s check-updates:*",
"check-updates:root": "ncu --target minor --dep dev -u",
"check-updates:workspaces": "yarn workspaces run check-updates -u",
"show-versions": "lerna ls --long",
"postinstall": "husky install",
"pre-commit": "yarn lint:shellcheck && yarn workspaces run pre-commit",
"shell": "nix develop",
"shell:spec": "nix develop .#spec",
"shell:whitehat": "nix develop .#whitehat",
"shell:full": "nix develop .#full"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@truffle/hdwallet-provider": "^2.1.15",
"@typechain/ethers-v5": "^11.1.1",
"@typechain/hardhat": "^8.0.3",
"@types/lodash": "^4.14.198",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"cloc": "^2.11.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"hardhat": "^2.17.3",
"hardhat-deploy": "^0.11.37",
"husky": "^8.0.3",
"lerna": "^7.3.0",
"node-jq": "^4.0.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"solhint": "3.6.2",
"syncpack": "^10.9.3",
"truffle": "^5.11.5",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2",
"web3": "^1.10.2"
},
"resolutions": {
"mocha": "^10.2.0"
},
"workspaces": {
"packages": [
"packages/solidity-semantic-money",
"packages/ethereum-contracts",
"packages/metadata",
"packages/js-sdk",
"packages/sdk-core",
"packages/sdk-redux",
"packages/subgraph",
"packages/hot-fuzz",
"packages/automation-contracts/scheduler",
"packages/automation-contracts/autowrap"
],
"nohoist": [
"**/webpack",
"**/webpack/**"
]
},
"version": "0.0.0"
}