-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1004 Bytes
/
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
{
"name": "nfthashi",
"version": "0.4.0",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"packages/**"
],
"scripts": {
"prepare": "husky install",
"predev": "yarn build:contracts",
"dev": "run-p dev:*",
"dev:app": "yarn workspace @nfthashi/app dev",
"build": "run-s build:contracts build:app",
"build:contracts": "yarn workspace @nfthashi/contracts build",
"build:app": "yarn workspace @nfthashi/app build",
"test": "run-p test:*",
"test:contracts": "yarn workspace @nfthashi/contracts test",
"lint": "run-p lint:*",
"lint:contracts": "yarn workspace @nfthashi/contracts lint",
"lint:app": "yarn workspace @nfthashi/app lint"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.--write": "prettier --write"
}
}