forked from airswap/airswap-protocols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.49 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
{
"name": "airswap-protocols",
"version": "0.0.1",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"source/*",
"tools/*"
],
"nohoist": [
"**/@graphprotocol",
"**/@graphprotocol/**"
]
},
"scripts": {
"clean": "lerna run clean",
"compile": "yarn clean && lerna run compile --concurrency=1",
"lint:check": "yarn eslint . --ext .js,.ts",
"lint:fix": "yarn eslint . --ext .js,.ts --fix",
"test": "lerna run test:unit --concurrency=1",
"deps:check": "python3 -m venv ./venv && source venv/bin/activate && pip3 install -r requirements.txt | { grep -v \"satisfied\" || :; } && python3 scripts/dependency_checker.py",
"deps:fix": "python3 -m venv ./venv && source venv/bin/activate && pip3 install -r requirements.txt | { grep -v \"satisfied\" || :; } && python3 scripts/dependency_checker.py --fix",
"prepare": "husky install",
"pretty:check": "prettier --check \"./**/*.sol\" \"./**/*.ts\" \"./**/*.js\"",
"pretty:fix": "prettier --write \"./**/*.sol\" \"./**/*.ts\" \"./**/*.js\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"dotenv": "^8.2.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"prettier": "^2.5.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=14"
}
}