-
Notifications
You must be signed in to change notification settings - Fork 243
/
package.json
105 lines (105 loc) · 4.66 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
101
102
103
104
105
{
"name": "@superfluid-finance/protocol-monorepo",
"description": "Superfluid Protocol monorepo",
"version": "0.0.0",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.7",
"@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.2",
"@typechain/hardhat": "^9.1.0",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"cloc": "^2.11.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"hardhat": "^2.22.9",
"hardhat-deploy": "^0.12.4",
"husky": "^9.1.5",
"lerna": "^8.1.8",
"node-jq": "^6.0.1",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"solhint": "^5.0.3",
"syncpack": "^13.0.0",
"truffle": "^5.11.5",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typedoc": "^0.26.6",
"typescript": "^5.5.4",
"web3": "^1.10.4"
},
"license": "MIT",
"npmClient": "yarn",
"private": true,
"repository": "github:superfluid-finance/protocol-monorepo",
"resolutions": {
"cross-fetch": "^4.0.0"
},
"scripts": {
"prepare": "husky && npm run git-submodule:init",
"lint": "run-s -l lint:*",
"lint:syncpack": "syncpack lint",
"lint:shellcheck": "tasks/shellcheck-all-tasks.sh",
"lint:actionlint": "actionlint .github/workflows/*.yml",
"lint:workspaces": "yarn workspaces run lint",
"build": "npm run build-essentials #synonym of build-essentials",
"build-essentials": "run-s -l build-essentials:*",
"build-essentials:metadata": "yarn workspace @superfluid-finance/metadata build",
"build-essentials:solidity-semantic-money": "yarn workspace @superfluid-finance/solidity-semantic-money build",
"build-essentials:ethereum-contracts": "yarn workspace @superfluid-finance/ethereum-contracts build",
"build-essentials:js-sdk": "yarn workspace @superfluid-finance/js-sdk build",
"build-essentials:sdk-core": "yarn workspace @superfluid-finance/sdk-core build",
"build-essentials:sdk-redux": "yarn workspace @superfluid-finance/sdk-redux build",
"build-for-contracts-dev": "run-s -l build-for-contracts-dev:*",
"build-for-contracts-dev:metadata": "yarn workspace @superfluid-finance/metadata build",
"build-for-contracts-dev:ethereum-contracts": "yarn workspace @superfluid-finance/ethereum-contracts build",
"build-for-contracts-dev:js-sdk": "yarn workspace @superfluid-finance/js-sdk build",
"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",
"show-versions": "lerna ls --long",
"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",
"check-updates": "run-s -l check-updates:*",
"check-updates:root": "ncu --target minor --dep dev",
"check-updates:workspaces": "yarn workspaces run check-updates",
"shell": "nix develop",
"shell:spec": "nix develop .#spec",
"shell:whitehat": "nix develop .#whitehat",
"shell:full": "nix develop .#full",
"manage-versions": "lerna version --no-git-tag-version --preid rc"
},
"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/**"
]
}
}