-
Notifications
You must be signed in to change notification settings - Fork 238
/
Copy pathpackage.json
80 lines (80 loc) · 2.94 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
{
"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": {
"first-time-after-git-clone": "yarn install && yarn build",
"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",
"test": "set -e;for i in ethereum-contracts js-sdk 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"
},
"devDependencies": {
"@ethersproject/providers": "^5.6.2",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@truffle/hdwallet-provider": "^1.7.0",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.1.0",
"@types/chai": "^4.3.0",
"@types/lodash": "^4.14.181",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.3.6",
"chai-ethers": "^0.0.1",
"cloc": "^2.9.0",
"copyfiles": "^2.4.1",
"dotenv": "^10.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^3.4.1",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.9.3",
"husky": "^5.2.0",
"lerna": "^3.22.1",
"node-jq": "^1.12.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-eslint": "^12.0.0",
"syncpack": "^6.2.0",
"truffle": "^5.5.9",
"ts-node": "^10.7.0",
"typechain": "^6.1.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.3",
"web3": "^1.7.3"
},
"workspaces": {
"packages": [
"packages/ethereum-contracts",
"packages/js-sdk",
"packages/sdk-core",
"packages/sdk-redux",
"packages/subgraph"
],
"nohoist": [
"**/webpack",
"**/webpack/**"
]
},
"version": "0.0.0"
}