-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.39 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": "@tandem/core-v1",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"hardhat:compile": "yarn workspace @tandem/hardhat hardhat compile",
"hardhat:test": "yarn workspace @tandem/hardhat hardhat test",
"postinstall": "husky install",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "solhint --config ./.solhint.json \"contracts/**/*.sol\"",
"prettier": "prettier --config ./.prettierrc.yaml --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:check": "prettier --check --config ./.prettierrc.yaml \"**/*.{js,json,md,sol,ts}\"",
"react-app:build": "yarn workspace @tandem/react-app build",
"react-app:eject": "yarn workspace @tandem/react-app eject",
"react-app:ipfs": "yarn workspace @tandem/react-app ipfs",
"react-app:start": "yarn workspace @tandem/react-app start",
"react-app:test": "yarn workspace @tandem/react-app test"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.4",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
}
}