forked from superfluid-finance/protocol-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.26 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
{
"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": "tasks/git-submodule-init.sh lib/forge-std",
"git:submodule:cleanup": "git submodule deinit --all --force",
"lint": "yarn workspaces run lint",
"build": "yarn build-essentials #synonym of build-essentials",
"build-essentials": "set -e;for i in ethereum-contracts js-sdk sdk-core sdk-redux;do yarn workspace @superfluid-finance/$i build;done",
"build-for-contracts-dev": "set -e;for i in 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 -e;for i in ethereum-contracts sdk-core;do yarn workspace @superfluid-finance/$i test;done",
"manage-versions": "lerna version --exact --no-git-tag-version --preid rc",
"check-updates": "ncu --target minor --dep dev",
"show-versions": "lerna ls --long",
"postinstall": "husky install",
"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.4",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@truffle/hdwallet-provider": "^2.1.1",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/lodash": "^4.14.189",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cloc": "^2.10.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"husky": "^8.0.2",
"lerna": "^6.0.3",
"node-jq": "^2.3.4",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"syncpack": "^8.3.9",
"truffle": "^5.6.6",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3",
"web3": "^1.8.1"
},
"workspaces": {
"packages": [
"packages/ethereum-contracts",
"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"
}