This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.52 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
106
107
108
{
"name": "index-coop",
"version": "0.0.1",
"description": "",
"main": "dist",
"types": "dist/types",
"files": [
"artifacts",
"dist",
"contracts",
"utils",
"scripts",
"typechain",
"tsconfig.json"
],
"scripts": {
"build": "yarn compile && yarn typechain && yarn fix-typechain && yarn transpile-dist",
"chain": "npx buidler node --no-deploy",
"clean": "rm -f coverage.json; rm -rf .coverage_cache; rm -rf .coverage_contracts; rm -rf cache; rm -rf coverage; rm -rf typechain; rm -rf artifacts",
"clean-dev-deployment": "rm -rf deployments/50-development.json",
"compile": "npx buidler compile",
"coverage": "yarn clean && yarn build && npx buidler coverage --temp artifacts --network coverage",
"deploy:kovan": "buidler --network kovan deploy",
"deploy:production": "buidler --network production deploy",
"deploy:local": "yarn run clean-dev-deployment && buidler --network localhost deploy",
"fix-typechain": "node scripts/fix-typechain.js && yarn rename-extensions",
"flatten": "npx waffle flatten",
"lint": "yarn run lint-sol && yarn run lint-ts",
"lint-sol": "solhint 'contracts/**/*.sol'",
"lint-ts": "tslint -c tslint.json -p tsconfig.json --fix",
"precommit": "lint-staged",
"prepare": "yarn build",
"rename-extensions": "for f in typechain/*.d.ts; do mv -- \"$f\" \"${f%.d.ts}.ts\"; done",
"test": "npx buidler test --network localhost",
"test:clean": "yarn clean && yarn build && yarn test",
"transpile": "tsc",
"transpile-dist": "tsc -p tsconfig.dist.json",
"typechain": "npx buidler typechain"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SetProtocol/set-protocol-v2.git"
},
"author": "felix2feng",
"license": "MIT",
"homepage": "https://github.com/SetProtocol",
"devDependencies": {
"@openzeppelin/contracts": "^3.1.0",
"@typechain/ethers-v4": "^1.0.0",
"@typechain/truffle-v4": "^2.0.2",
"@typechain/truffle-v5": "^2.0.2",
"@typechain/web3-v1": "^1.0.0",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^5.0.0",
"@types/lodash": "^4.14.86",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"buidler-deploy": "^0.5.14",
"chai": "^4.2.0",
"coveralls": "^3.0.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^2.5.1",
"ethers": "^4.0.47",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.4",
"solc": "^0.6.10",
"solhint": "^3.1.0",
"solidity-coverage": "^0.7.5",
"ts-generator": "0.0.8",
"ts-node": "^8.10.1",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.9.3",
"web3": "^1.2.9"
},
"dependencies": {
"@nomiclabs/buidler": "^1.3.4",
"@nomiclabs/buidler-ethers": "^1.3.3",
"@nomiclabs/buidler-waffle": "^1.3.3",
"buidler-typechain": "0.1.1",
"ethereumjs-util": "^7.0.5",
"fs-extra": "^5.0.0",
"module-alias": "^2.2.2",
"replace-in-file": "^6.1.0",
"typechain": "^2.0.0"
},
"_moduleAliases": {
"@utils": "utils",
"@typechain": "typechain"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"lint-staged": {
"contracts/**/*.sol": [
"yarn lint-sol --fix"
],
"test/**/*.ts": [
"yarn lint-ts --fix"
],
"utils/**/*.ts": [
"yarn lint-ts --fix"
]
}
}