forked from nfthashi/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
{
"name": "nfthashi",
"version": "0.3.0",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"packages/**"
],
"scripts": {
"prepare": "husky install",
"ci": "run-p lint build test",
"lint": "run-p lint:*",
"lint:contracts": "yarn workspace @nfthashi/contracts lint",
"lint:web": "yarn workspace @nfthashi/web lint",
"fix": "run-p fix:*",
"fix:contracts": "yarn workspace @nfthashi/contracts fix",
"fix:web": "yarn workspace @nfthashi/web fix",
"test": "run-p test:*",
"test:contracts": "yarn workspace @nfthashi/contracts test",
"predev": "yarn build:contracts",
"dev": "run-p dev:*",
"dev:web": "yarn workspace @nfthashi/web dev",
"build": "run-s build:contracts build:web",
"build:contracts": "yarn workspace @nfthashi/contracts build",
"build:web": "yarn workspace @nfthashi/web build"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.--write": "prettier --write"
}
}