-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "Blossym",
"version": "0.1.0",
"description": "",
"license": "MIT",
"private": true,
"workspaces": [
"client"
],
"engines": {
"node": "14.x"
},
"scripts": {
"compile": "yarn run truffle compile",
"start": "yarn run compile && yarn run start:client",
"start:client": "yarn workspace client run start",
"lint": "yarn run lint:prettier && yarn run lint:solhint",
"lint:prettier": "yarn prettier --check .",
"lint:solhint": "yarn solhint ./**/*.sol",
"fix": "yarn run fix:prettier && yarn run fix:solhint",
"fix:prettier": "yarn prettier --write .",
"fix:solhint": "yarn solhint --fix ./**/*.sol",
"build": "yarn run compile && yarn run build:client",
"build:client": "yarn workspace client run build",
"test": "yarn workspace client run test"
},
"dependencies": {
"@aave/protocol-v2": "^1.0.1",
"@openzeppelin/contracts": "^3.3.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.2.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"pretty-quick": "^3.1.0",
"solhint": "^3.3.2",
"truffle": "^5.1.63"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,html,css,md,sol}": "prettier --write"
}
}