-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
{
"name": "AVAX-AMM",
"version": "1.0.0",
"description": "`Miniswap` is a amm dapp that allows tokens to be exchanged like `Uniswap`.",
"license": "",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/unchain-tech/AVAX-AMM.git"
},
"author": "",
"bugs": {
"url": "https://github.com/unchain-tech/AVAX-AMM/issues"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"simple-git-hooks": "^2.8.1",
"solhint": "^3.4.1"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"scripts": {
"contract": "yarn workspace contract",
"client": "yarn workspace client",
"solhint": "solhint --max-warnings 0 \"packages/contract/contracts/*.sol\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .prettierignore .",
"prettier:check": "prettier --check --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .prettierignore .",
"test": "yarn contract test"
}
}